From: Michael J Gruber Date: Mon, 12 Jul 2010 10:33:49 +0000 (+0200) Subject: test-lib: TAP compliance for skipping tests on request X-Git-Tag: v1.7.2-rc3~4 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=637ab29b86533c7ce65a615fd445d163a2c57dc9;p=thirdparty%2Fgit.git test-lib: TAP compliance for skipping tests on request Make the output TAP compliant for tests skipped on request (GIT_SKIP_TESTS). Signed-off-by: Michael J Gruber Acked-by: Ævar Arnfjörð Bjarmason Signed-off-by: Junio C Hamano --- diff --git a/t/test-lib.sh b/t/test-lib.sh index bc0656457b..db8371cb17 100644 --- a/t/test-lib.sh +++ b/t/test-lib.sh @@ -396,7 +396,7 @@ test_skip () { case "$to_skip" in t) say_color skip >&3 "skipping test: $@" - say_color skip "ok $test_count: # skip $1" + say_color skip "ok $test_count # skip $1" : true ;; *) @@ -833,7 +833,7 @@ do case "$this_test" in $skp) say_color skip >&3 "skipping test $this_test altogether" - say_color skip "skip all tests in $this_test" + skip_all="skip all tests in $this_test" test_done esac done