diff options
author | Ramsay Jones <ramsay@ramsay1.demon.co.uk> | 2008-07-09 00:18:26 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-07-09 14:51:23 -0700 |
commit | c6955fec546f339b258a1cba0e23618010e5c260 (patch) | |
tree | 71c375d911d8eac1075f8dc101202d139a90ed0b /t | |
parent | 948e7471e03340307e802e919303256f80273d21 (diff) | |
download | git-c6955fec546f339b258a1cba0e23618010e5c260.tar.gz git-c6955fec546f339b258a1cba0e23618010e5c260.tar.xz |
t9113-*.sh: provide user feedback when test skipped
Currently this test simply exits without providing any
feedback at all. Tell user if the test is being skipped
and provide a hint as to how the test may be enabled.
Signed-off-by: Ramsay Jones <ramsay@ramsay1.demon.co.uk>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't')
-rwxr-xr-x | t/t9113-git-svn-dcommit-new-file.sh | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/t/t9113-git-svn-dcommit-new-file.sh b/t/t9113-git-svn-dcommit-new-file.sh index 31c929b57..8da8ce58e 100755 --- a/t/t9113-git-svn-dcommit-new-file.sh +++ b/t/t9113-git-svn-dcommit-new-file.sh @@ -7,12 +7,18 @@ # I don't like the idea of taking a port and possibly leaving a # daemon running on a users system if the test fails. # Not all git users will need to interact with SVN. -test -z "$SVNSERVE_PORT" && exit 0 test_description='git-svn dcommit new files over svn:// test' . ./lib-git-svn.sh +if test -z "$SVNSERVE_PORT" +then + say 'skipping svnserve test. (set $SVNSERVE_PORT to enable)' + test_done + exit +fi + start_svnserve () { svnserve --listen-port $SVNSERVE_PORT \ --root "$rawsvnrepo" \ |