From: Theodore Ts'o Date: Thu, 18 Feb 2016 23:43:42 +0000 (+1100) Subject: check: avoid spurious complaints that tests/$FSTYP/group does not exist X-Git-Tag: v2022.05.01~2614 X-Git-Url: http://git.apps.os.sepia.ceph.com/?p=xfstests-dev.git;a=commitdiff_plain;h=b424812fc03082871c766f1262b87823dcc7ca74 check: avoid spurious complaints that tests/$FSTYP/group does not exist There are no tmpfs specific tests, so tests/tmpfs does not exist. This commit avoids printing a spurious error message when running specifying a group of tests (e.g., "check -g quick"): DEVICE: test:/tmp MK2FS OPTIONS: MOUNT OPTIONS: -o block_validity ./check: line 96: tests/tmpfs/group: No such file or directory FSTYP -- tmpfs PLATFORM -- Linux/i686 kvm-xfstests 4.5.0-rc2ext4-00002-g6df2762 MKFS_OPTIONS -- test:/scratch MOUNT_OPTIONS -- -o size=1G test:/scratch /test/scratch generic/001 [10:31:10][ 5.811742] run fstests generic/001 ... Similar problems have been reported when testing nfs using xfstests. Signed-off-by: Theodore Ts'o Reviewed-by: Christoph Hellwig Signed-off-by: Dave Chinner --- diff --git a/check b/check index c40d2a81..2986d84d 100755 --- a/check +++ b/check @@ -90,6 +90,9 @@ get_group_list() grp=$1 for d in $SRC_GROUPS $FSTYP; do + if ! test -d "$SRC_DIR/$d" ; then + continue + fi l=$(sed -n < $SRC_DIR/$d/group \ -e 's/#.*//' \ -e 's/$/ /' \ @@ -105,6 +108,9 @@ get_all_tests() { touch $tmp.list for d in $SRC_GROUPS $FSTYP; do + if ! test -d "$SRC_DIR/$d" ; then + continue + fi ls $SRC_DIR/$d/* | \ grep -v "\..*" | \ grep "^$SRC_DIR/$d/$VALID_TEST_NAME"| \