From 56f7241b4e868cea12e4c5fc07a7cde5a81ecba7 Mon Sep 17 00:00:00 2001 From: Eric Sandeen Date: Sun, 17 Jan 2010 10:35:23 -0600 Subject: [PATCH] xfstests 073: unmount source image in cleanup Test 073 is currently failing w/ xfs_repair problems, and when it does, the whole series stops because the test dir still has a loopback mounted filesystem on it, and it can't unmount. Fix that. Signed-off-by: Eric Sandeen Reviewed-by: Christoph Hellwig --- 073 | 1 + 1 file changed, 1 insertion(+) diff --git a/073 b/073 index 0ef9287a2..756c1c84d 100755 --- a/073 +++ b/073 @@ -44,6 +44,7 @@ _cleanup() umount $SCRATCH_MNT 2>/dev/null umount -d $imgs.loop 2>/dev/null [ -d $imgs.loop ] && rmdir $imgs.loop + umount -d $imgs.source_dir 2>/dev/null [ -d $imgs.source_dir ] && rm -rf $imgs.source_dir rm -f $imgs.* $tmp.* /var/tmp/xfs_copy.log.* } -- 2.50.1