0b7af917e2
- Drop patches incorporated into upstream - Still adds the various DASD patches
72 lines
2.1 KiB
Diff
72 lines
2.1 KiB
Diff
From 2224076fef1a54391cf090149ba9308ae90067eb Mon Sep 17 00:00:00 2001
|
|
From: Jim Meyering <jim@meyering.net>
|
|
Date: Fri, 19 Oct 2012 18:09:19 +0200
|
|
Subject: [PATCH 48/89] tests: make t6003-dm-hide work reliably on F17
|
|
|
|
* tests/t6003-dm-hide.sh: Adjust to work reliably on Fedora 17.
|
|
---
|
|
tests/t6003-dm-hide.sh | 27 +++++++++++++++++----------
|
|
1 file changed, 17 insertions(+), 10 deletions(-)
|
|
|
|
diff --git a/tests/t6003-dm-hide.sh b/tests/t6003-dm-hide.sh
|
|
index 3cfdc43..59baae9 100644
|
|
--- a/tests/t6003-dm-hide.sh
|
|
+++ b/tests/t6003-dm-hide.sh
|
|
@@ -19,7 +19,6 @@
|
|
. "${srcdir=.}/init.sh"; path_prepend_ ../parted
|
|
|
|
require_root_
|
|
-lvm_init_root_dir_
|
|
|
|
test "x$ENABLE_DEVICE_MAPPER" = xyes \
|
|
|| skip_ "no device-mapper support"
|
|
@@ -32,7 +31,10 @@ d1=
|
|
f1=
|
|
dev=
|
|
cleanup_fn_() {
|
|
- dmsetup remove $linear_
|
|
+ # Insist. Sometimes the initial removal fails (race?).
|
|
+ # When that happens, a second removal appears to be sufficient.
|
|
+ dmsetup remove $linear_ || dmsetup remove $linear_
|
|
+
|
|
test -n "$d1" && losetup -d "$d1"
|
|
rm -f "$f1"
|
|
}
|
|
@@ -41,20 +43,25 @@ f1=$(pwd)/1; d1=$(loop_setup_ "$f1") \
|
|
|| fail=1
|
|
|
|
# setup: create a mapping
|
|
-echo "0 2048 linear $d1 0" | dmsetup create $linear_ || fail=1
|
|
-dev="$DM_DEV_DIR/mapper/$linear_"
|
|
-
|
|
-# device should not show up
|
|
+echo 0 2048 linear $d1 0 | dmsetup create $linear_ || fail=1
|
|
+dev=/dev/mapper/$linear_
|
|
|
|
+# No "DMRAID-" UUID prefix, hence the device should not show up.
|
|
parted -l >out 2>&1
|
|
-! grep $linear_ out || fail=1
|
|
+grep "^Disk $dev:" out && fail=1
|
|
|
|
+# Unless we perform both dmsetup-remove *and* losetup -d,
|
|
+# the following dmsetup-create would fail with EBUSY.
|
|
dmsetup remove $linear_
|
|
-echo "0 2048 linear $d1 0" | dmsetup create $linear_ -u "DMRAID-fake" || fail=1
|
|
+losetup -d "$d1" || fail=1
|
|
+# Reopen (or get new) loop device.
|
|
+d1=$(loop_setup_ "$f1") || fail=1
|
|
|
|
-# device should now show up
|
|
+# This time, use a fake UUID.
|
|
+echo 0 2048 linear $d1 0 | dmsetup create $linear_ -u "DMRAID-fake-$$" || fail=1
|
|
|
|
+# Thus, the device should now show up.
|
|
parted -l >out 2>&1
|
|
-grep $linear_ out || fail=1
|
|
+grep "^Disk $dev:" out || fail=1
|
|
|
|
Exit $fail
|
|
--
|
|
1.8.5.3
|
|
|