summaryrefslogtreecommitdiff
path: root/check
diff options
context:
space:
mode:
authorTheodore Ts'o <tytso@mit.edu>2016-02-19 10:43:42 +1100
committerDave Chinner <david@fromorbit.com>2016-02-19 10:43:42 +1100
commitb424812fc03082871c766f1262b87823dcc7ca74 (patch)
treefb3905213d31c0186a42a147833245800be44a2e /check
parent9345c0c9166091e22d42bbaf9449954730727cca (diff)
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 <tytso@mit.edu> Reviewed-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Dave Chinner <david@fromorbit.com>
Diffstat (limited to 'check')
-rwxr-xr-xcheck6
1 files changed, 6 insertions, 0 deletions
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"| \