From: Lukas Czerner Date: Thu, 11 Jul 2013 10:37:56 +0000 (+0000) Subject: xfstests: Run all tests when nothing is specified X-Git-Tag: v2022.05.01~3366 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=0b750dfb358ad8c521759b174c8803b8169ca40e;p=users%2Fhch%2Fxfstests-dev.git xfstests: Run all tests when nothing is specified Currently when no tests or test groups are specified xfstests will silently test nothing. Interestingly enough when test groups to exclude are specified the rest of the tests will be run. This commit changes that to run all possible tests (for a given file system) when no specific tests has been specified. This matches the old xfstests behaviour. Signed-off-by: Lukas Czerner Reviewed-by: Chandra Seetharaman Signed-off-by: Rich Johnston --- diff --git a/check b/check index 64e9865bf..76e3a77f4 100755 --- a/check +++ b/check @@ -112,7 +112,7 @@ get_all_tests() for d in $SRC_GROUPS $FSTYP; do ls $SRC_DIR/$d/* | \ grep -v "\..*" | \ - grep -v group >> $tmp.list 2>/dev/null + grep -v "group\|Makefile" >> $tmp.list 2>/dev/null done } @@ -258,8 +258,8 @@ elif $have_test_arg; then # had test numbers, but none in group file ... do nothing touch $tmp.list else - # no test numbers, do everything from group file - sed -n -e '/^[0-9][0-9][0-9]*/s/[ ].*//p' $tmp.list + # no test numbers, do everything + get_all_tests fi # sort the list of tests into numeric order diff --git a/group b/group deleted file mode 100644 index 4e01f0c1d..000000000 --- a/group +++ /dev/null @@ -1,5 +0,0 @@ -# QA groups control file -# Defines test groups and nominal group owners -# - do not start group names with a digit -# - comment line before each group is "new" description -#