From: Dave Chinner Date: Fri, 15 Mar 2013 11:53:30 +0000 (+0000) Subject: xfstests: filter files in 019 for --large-fs X-Git-Tag: v2022.05.01~3500 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=aa1a64f08c7ecc6d94ae9a5729f1acba94f25de1;p=users%2Fhch%2Fxfstests-dev.git xfstests: filter files in 019 for --large-fs Make sure that the .use_space files don't appear in the files dumped to the output files. Signed-off-by: Dave Chinner Reviewed-by: Rich Johnston Signed-off-by: Rich Johnston --- diff --git a/019 b/019 index 42e3c2287..88be46448 100755 --- a/019 +++ b/019 @@ -128,15 +128,16 @@ _verify_fs() echo "*** verify FS" (cd $SCRATCH_MNT ; find . | LC_COLLATE=POSIX sort \ + | grep -v ".use_space" \ | xargs $here/src/lstat64 | _filter_stat) diff -q $SCRATCH_MNT/bigfile $tempfile.2 \ || _fail "bigfile corrupted" - + echo "*** unmount FS" _full "umount" umount $SCRATCH_DEV >>$seqfull 2>&1 \ || _fail "umount failed" - + echo "*** check FS" _check_scratch_fs }