From 740f3296b86ab8e18a6da4949b0db4139298202b Mon Sep 17 00:00:00 2001 From: Jani Nikula Date: Sun, 26 Feb 2017 19:36:49 +0200 Subject: [PATCH] test: print test description also for failing known broken tests With the test description, the user can see the test script name, and debug with that alone. --- test/test-lib.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test-lib.sh b/test/test-lib.sh index 02634ac1..79dc8419 100644 --- a/test/test-lib.sh +++ b/test/test-lib.sh @@ -851,12 +851,12 @@ test_ok_ () { } test_failure_ () { + print_test_description if test "$test_subtest_known_broken_" = "t"; then test_known_broken_failure_ "$@" return fi test_failure=$(($test_failure + 1)) - print_test_description test_failure_message_ "FAIL" "$test_subtest_name" "$@" test "$immediate" = "" || { GIT_EXIT_OK=t; exit 1; } return 1 -- 2.43.0