Signed-off-by: Luc Van Oostenryck <luc.vanoostenryck@xxxxxxxxx> --- validation/test-suite | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/validation/test-suite b/validation/test-suite index 9364b9d7f..84e359fb8 100755 --- a/validation/test-suite +++ b/validation/test-suite @@ -223,6 +223,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 # @@ -259,8 +267,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 -- 2.14.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