This is a preparatory step to allow to run only a part of the testsuite (a subdir). Signed-off-by: Luc Van Oostenryck <luc.vanoostenryck@xxxxxxxxx> --- validation/test-suite | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/validation/test-suite b/validation/test-suite index 72bee9dce..410190bd3 100755 --- a/validation/test-suite +++ b/validation/test-suite @@ -505,7 +505,7 @@ _EOF return 0 } -while true; do +while [ "$#" -gt "0" ]; do case "$1" in -a|--abort) abort=1 @@ -517,11 +517,6 @@ while true; do shift continue ;; - - '') - tests_list=`find . -name '*.c' | sed -e 's#^\./\(.*\)#\1#' | sort` - break - ;; *.c) tests_list="$@" break @@ -550,6 +545,10 @@ while true; do break done +if [ -z "$tests_list" ]; then + tests_list=`find . -name '*.c' | sed -e 's#^\./\(.*\)#\1#' | sort` +fi + do_test_suite exit $failed -- 2.15.0 -- To unsubscribe from this list: send the line "unsubscribe linux-sparse" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html