diff options
author | Jeff King <peff@peff.net> | 2009-04-03 15:31:10 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-04-05 00:38:26 -0700 |
commit | 5dba35912474770d0df45ed801d78c4c9ed5e949 (patch) | |
tree | d61db4853ccf89f7ef30bb28ef50b28116a1fe57 /t/lib-git-svn.sh | |
parent | f3a186ffade15f793ea17713a10e10ec4f26ff11 (diff) | |
download | git-5dba35912474770d0df45ed801d78c4c9ed5e949.tar.gz |
tests: remove exit after test_done call
test_done always exits, so this line is never executed.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/lib-git-svn.sh')
-rw-r--r-- | t/lib-git-svn.sh | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/t/lib-git-svn.sh b/t/lib-git-svn.sh index de384e6ac3..cdd7ccdd2a 100644 --- a/t/lib-git-svn.sh +++ b/t/lib-git-svn.sh @@ -7,7 +7,6 @@ if test -n "$NO_SVN_TESTS" then say 'skipping git svn tests, NO_SVN_TESTS defined' test_done - exit fi GIT_DIR=$PWD/.git @@ -19,7 +18,6 @@ if test $? -ne 1 then say 'skipping git svn tests, svn not found' test_done - exit fi svnrepo=$PWD/svnrepo @@ -43,7 +41,6 @@ then fi say "$err" test_done - exit fi rawsvnrepo="$svnrepo" @@ -144,7 +141,6 @@ require_svnserve () { then say 'skipping svnserve test. (set $SVNSERVE_PORT to enable)' test_done - exit fi } |