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/lib-cvs.sh | |
parent | 4ecb79386d2f45f3b439b397ac4aa592e1f4e9c8 (diff) | |
download | git-e8344e866655cfae1f870d7e8d5046c1bdf08adf.tar.gz git-e8344e866655cfae1f870d7e8d5046c1bdf08adf.tar.xz |
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/lib-cvs.sh')
-rw-r--r-- | t/lib-cvs.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/t/lib-cvs.sh b/t/lib-cvs.sh index 4b3b79373..648d1619c 100644 --- a/t/lib-cvs.sh +++ b/t/lib-cvs.sh @@ -9,7 +9,7 @@ export HOME if ! type cvs >/dev/null 2>&1 then - say 'skipping cvsimport tests, cvs not found' + skip_all='skipping cvsimport tests, cvs not found' test_done fi @@ -21,11 +21,11 @@ case "$cvsps_version" in 2.1 | 2.2*) ;; '') - say 'skipping cvsimport tests, cvsps not found' + skip_all='skipping cvsimport tests, cvsps not found' test_done ;; *) - say 'skipping cvsimport tests, unsupported cvsps version' + skip_all='skipping cvsimport tests, unsupported cvsps version' test_done ;; esac |