- Summary of important changes from upstream: - add support for a new Linux-specific GPT partition type code - partprobe: remove partitions when there is no partition table - libparted: refactor device-mapper partition sync code - libparted: remove extraneous blkpg add partition ped exception - libparted: don't probe every dm device in probe_all - New Fedora changes: - libparted: Add Intel Rapid Start Technology partition flag. - libparted: Add UEFI System Partition flag. - libparted: Add hfs_esp partition flag to GPT. - libparted: Recognize btrfs filesystem - tests: Add btrfs and xfs to the fs probe test
27 lines
786 B
Diff
27 lines
786 B
Diff
From 17027da1eda39d20b2d6dca0a59ac4afc5409318 Mon Sep 17 00:00:00 2001
|
|
From: "Brian C. Lane" <bcl@redhat.com>
|
|
Date: Wed, 28 Aug 2013 08:47:26 -0700
|
|
Subject: [PATCH 69/69] tests: Add btrfs and xfs to the fs probe test
|
|
|
|
* tests/tests/t1700-probe-fs.sh: Add btrfs and xfs
|
|
---
|
|
tests/t1700-probe-fs.sh | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/tests/t1700-probe-fs.sh b/tests/t1700-probe-fs.sh
|
|
index 7ce53d0..0418e73 100755
|
|
--- a/tests/t1700-probe-fs.sh
|
|
+++ b/tests/t1700-probe-fs.sh
|
|
@@ -22,7 +22,7 @@ require_512_byte_sector_size_
|
|
dev=loop-file
|
|
ss=$sector_size_
|
|
|
|
-for type in ext2 ext3 ext4 nilfs2; do
|
|
+for type in ext2 ext3 ext4 btrfs xfs nilfs2; do
|
|
|
|
( mkfs.$type -V ) >/dev/null 2>&1 \
|
|
|| { warn_ "$ME: no $type support"; continue; }
|
|
--
|
|
1.8.3.1
|
|
|