diff options
author | Johannes Sixt <j6t@kdbg.org> | 2009-03-01 19:52:51 +0100 |
---|---|---|
committer | Johannes Sixt <j6t@kdbg.org> | 2009-03-19 21:44:04 +0100 |
commit | fae74a04d75e820c5150cfb0cb4c044bf4488007 (patch) | |
tree | 221772f30f5451e3e6fb3ccebfaf118002c5ac34 /t/t9401-git-cvsserver-crlf.sh | |
parent | 7fd3ef1fd73dffdb9b3445893ab579723ce08e74 (diff) | |
download | git-fae74a04d75e820c5150cfb0cb4c044bf4488007.tar.gz |
test suite: Use 'say' to say something instead of 'test_expect_success'
Some tests report that some tests will be skipped. They used
'test_expect_success' with a trivially successful test. Nowadays we have
the helper function 'say' for this purpose.
In on case, 'say_color skip' is replaced by 'say' because the former is
not intended as a public API.
Signed-off-by: Johannes Sixt <j6t@kdbg.org>
Diffstat (limited to 't/t9401-git-cvsserver-crlf.sh')
-rwxr-xr-x | t/t9401-git-cvsserver-crlf.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/t9401-git-cvsserver-crlf.sh b/t/t9401-git-cvsserver-crlf.sh index 5d6200c4df..8882230134 100755 --- a/t/t9401-git-cvsserver-crlf.sh +++ b/t/t9401-git-cvsserver-crlf.sh @@ -49,12 +49,12 @@ not_present() { cvs >/dev/null 2>&1 if test $? -ne 1 then - test_expect_success 'skipping git-cvsserver tests, cvs not found' : + say 'skipping git-cvsserver tests, cvs not found' test_done exit fi perl -e 'use DBI; use DBD::SQLite' >/dev/null 2>&1 || { - test_expect_success 'skipping git-cvsserver tests, Perl SQLite interface unavailable' : + say 'skipping git-cvsserver tests, Perl SQLite interface unavailable' test_done exit } |