The flag 'quiet' is used to quiets unwanted error messages, for example for testcases known to fail, but this flag is reset too late so that the beginning of the next testcases will run with the value for the previous case. Fix this by reseting the flag at the begining of each testcase. Signed-off-by: Luc Van Oostenryck <luc.vanoostenryck@xxxxxxxxx> --- validation/test-suite | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/validation/test-suite b/validation/test-suite index 420214c65..6a939846f 100755 --- a/validation/test-suite +++ b/validation/test-suite @@ -255,6 +255,7 @@ do_test() { test_failed=0 file="$1" + quiet=0 get_tag_value $file @@ -316,7 +317,6 @@ do_test() actual_exit_value=$? must_fail=$check_known_to_fail - quiet=0 [ $must_fail -eq 1 ] && [ $V -eq 0 ] && quiet=1 known_ko_tests=$(($known_ko_tests + $must_fail)) -- 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