diff options
author | Ævar Arnfjörð Bjarmason <avarab@gmail.com> | 2010-07-08 01:16:06 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-07-08 17:53:12 -0700 |
commit | e8344e866655cfae1f870d7e8d5046c1bdf08adf (patch) | |
tree | 5e194fa5e5933ad3b1b5c98a8a976adbe7c2f0a0 /t/gitweb-lib.sh | |
parent | 4ecb79386d2f45f3b439b397ac4aa592e1f4e9c8 (diff) | |
download | git-e8344e866655cfae1f870d7e8d5046c1bdf08adf.tar.gz |
tests: Use skip_all=* to skip tests
Change tests to skip with skip_all=* + test_done instead of using say
+ test_done.
This is a follow-up to "tests: Skip tests in a way that makes sense
under TAP" (fadb5156e4). I missed these cases when prepearing that
patch, hopefully this is all of them.
Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/gitweb-lib.sh')
-rw-r--r-- | t/gitweb-lib.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/gitweb-lib.sh b/t/gitweb-lib.sh index b70b891b62..81ef2a0969 100644 --- a/t/gitweb-lib.sh +++ b/t/gitweb-lib.sh @@ -76,12 +76,12 @@ gitweb_run () { . ./test-lib.sh if ! test_have_prereq PERL; then - say 'skipping gitweb tests, perl not available' + skip_all='skipping gitweb tests, perl not available' test_done fi perl -MEncode -e 'decode_utf8("", Encode::FB_CROAK)' >/dev/null 2>&1 || { - say 'skipping gitweb tests, perl version is too old' + skip_all='skipping gitweb tests, perl version is too old' test_done } |