diff options
Diffstat (limited to 'validation/test-suite')
| -rwxr-xr-x | validation/test-suite | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/validation/test-suite b/validation/test-suite index 854081c5..df978c11 100755 --- a/validation/test-suite +++ b/validation/test-suite @@ -224,6 +224,14 @@ echo echo " help prints usage" } +disable() +{ + disabled_tests=$(($disabled_tests + 1)) + if [ -z "$vquiet" ]; then + echo " DISABLE $1 ($2)" + fi +} + ## # do_test(file) - tries to validate a test case # @@ -260,8 +268,7 @@ do_test() base_cmd=$1 for i in $disabled_cmds; do if [ "$i" = "$base_cmd" ] ; then - disabled_tests=$(($disabled_tests + 1)) - echo " DISABLE $test_name ($file)" + disable "$test_name" "$file" return 3 fi done |
