From: Jani Nikula Date: Sun, 26 Feb 2017 17:36:49 +0000 (+0200) Subject: test: print test description also for failing known broken tests X-Git-Tag: 0.25_rc0~138 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=740f3296b86ab8e18a6da4949b0db4139298202b;ds=sidebyside 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. --- 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