]> git.apps.os.sepia.ceph.com Git - xfstests-dev.git/commitdiff
xfs/195: Use XFSDUMP_PROG instead of xfsdump directly
authorJan Kara <jack@suse.cz>
Mon, 10 Nov 2014 02:05:22 +0000 (13:05 +1100)
committerDave Chinner <david@fromorbit.com>
Mon, 10 Nov 2014 02:05:22 +0000 (13:05 +1100)
Use appropriate environment variable (XFSDUMP_PROG) instead of
hardcoding 'xfsdump' name. Also make the test fail graciously when
xfsdump isn't installed.

We also make XFSDUMP_PROG be equal to empty string instead of -e when
xfsdump isn't installed. The changes require some tweaking to output
filtering since full command path now appears in the output.

Signed-off-by: Jan Kara <jack@suse.cz>
Reviewed-by: Dave Chinner <dchinner@redhat.com>
Signed-off-by: Dave Chinner <david@fromorbit.com>
common/config
tests/xfs/195

index 64506a23ac6b53ddfab7bf76ee6ffe7e555d3493..1cb08c0ee44168a3cd87016008aad238170e9415 100644 (file)
@@ -163,7 +163,11 @@ export XFS_IO_PROG="`set_prog_path xfs_io`"
 export XFS_PARALLEL_REPAIR_PROG="`set_prog_path xfs_prepair`"
 export XFS_PARALLEL_REPAIR64_PROG="`set_prog_path xfs_prepair64`"
 export __XFSDUMP_PROG="`set_prog_path xfsdump`"
-export XFSDUMP_PROG="$__XFSDUMP_PROG -e"
+if [ -n "$__XFSDUMP_PROG" ]; then
+       export XFSDUMP_PROG="$__XFSDUMP_PROG -e"
+else
+       export XFSDUMP_PROG=""
+fi
 export XFSRESTORE_PROG="`set_prog_path xfsrestore`"
 export XFSINVUTIL_PROG="`set_prog_path xfsinvutil`"
 export GETFATTR_PROG="`set_prog_path getfattr`"
index c7bc7b815a2c15d073842f77cd8b2259113984ed..76f130ebdf66b99a09055b84030d8298e9e430ce 100755 (executable)
@@ -48,11 +48,11 @@ trap "_cleanup; exit \$status" 0 1 2 3 15
 #
 _do_dump()
 {
-       xfsdump -l 0 -s d -F  \
+       $XFSDUMP_PROG -l 0 -s d -F  \
                -L prova -M prova \
-               -f $TEST_DIR/dumpfile -e -v excluded_files=debug $TEST_DIR \
+               -f $TEST_DIR/dumpfile -v excluded_files=debug $TEST_DIR \
                | grep "ino $inum" \
-               | sed -e 's/xfsdump: pruned ino [0-9]*, owner 0, estimated size 0: skip flag set/xfsdump: pruned ino NNN, owner 0, estimated size 0: skip flag set/'
+               | sed -e 's/.*xfsdump: pruned ino [0-9]*, owner 0, estimated size 0: skip flag set/xfsdump: pruned ino NNN, owner 0, estimated size 0: skip flag set/'
 }
 
 # get standard environment, filters and checks
@@ -65,6 +65,7 @@ _supported_os Linux
 
 _require_test
 _require_user
+_require_command $XFSDUMP_PROG xfsdump
 
 echo "Preparing subtree"
 mkdir $TEST_DIR/d