From 5c8e141414058430155ea179bce38ceb8d750c5d Mon Sep 17 00:00:00 2001 From: Jonathan Nieder Date: Tue, 31 Aug 2010 12:10:55 -0500 Subject: [PATCH] tests: make test_might_fail more verbose Let test_might_fail say something about its failures for consistency with test_must_fail. Cc: Jeff King Signed-off-by: Jonathan Nieder Signed-off-by: Junio C Hamano --- t/test-lib.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/t/test-lib.sh b/t/test-lib.sh index dbb13af33e..16ceb5316f 100644 --- a/t/test-lib.sh +++ b/t/test-lib.sh @@ -618,7 +618,12 @@ test_must_fail () { test_might_fail () { "$@" - test $? -ge 0 -a $? -le 129 -o $? -gt 192 + exit_code=$? + if test $exit_code -gt 129 -a $exit_code -le 192; then + echo >&2 "test_might_fail: died by signal: $*" + return 1 + fi + return 0 } # test_cmp is a helper function to compare actual and expected output. -- 2.11.4.GIT