]> git.apps.os.sepia.ceph.com Git - xfstests-dev.git/commitdiff
xfstests: don't delete scratch loop device w/ umount -d
authorEric Sandeen <sandeen@sandeen.net>
Fri, 19 Feb 2010 15:34:33 +0000 (09:34 -0600)
committerEric Sandeen <sandeen@sandeen.net>
Fri, 19 Feb 2010 15:34:33 +0000 (09:34 -0600)
Recent fixes to 073 added umount -d, but if we happen
to be using a scratch device on loopback, subsequent
tests get very, very unhappy when their loopback block
device goes away!

Signed-off-by: Eric Sandeen <sandeen@redhat.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
073

diff --git a/073 b/073
index 90fa1f0a77881e4679a865494b0a71ffc3893cc4..7ce6efb733a27751af273526d783ab69d2936439 100755 (executable)
--- a/073
+++ b/073
@@ -119,7 +119,8 @@ _verify_copy()
        diff -u $tmp.geometry1 $tmp.geometry2
 
        echo unmounting and removing new image
-       umount -d $source_dir $target_dir
+       umount $source_dir
+       umount -d $target_dir
        rm -f $target
 }