summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 3c93983)
raw | patch | inline | side by side (parent: 3c93983)
author | Junio C Hamano <gitster@pobox.com> | |
Thu, 9 Dec 2010 06:53:59 +0000 (22:53 -0800) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Thu, 9 Dec 2010 17:26:07 +0000 (09:26 -0800) |
Running test t9010 without svn currently errors out for no good reason.
The test uses "svnadmin" without checking if svn is available. This was a
regression introduced by b0ad24b (t9010 (svn-fe): Eliminate dependency on
svn perl bindings, 2010-10-10) when it stopped including ./lib-git-svn.sh
that had the safety.
This should fix it.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
The test uses "svnadmin" without checking if svn is available. This was a
regression introduced by b0ad24b (t9010 (svn-fe): Eliminate dependency on
svn perl bindings, 2010-10-10) when it stopped including ./lib-git-svn.sh
that had the safety.
This should fix it.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t9010-svn-fe.sh | patch | blob | history |
diff --git a/t/t9010-svn-fe.sh b/t/t9010-svn-fe.sh
index fd851a408be8010283dcb195feaa613e263b5b79..faf9092967fff63cb0f496064d237b4c6e900f23 100755 (executable)
--- a/t/t9010-svn-fe.sh
+++ b/t/t9010-svn-fe.sh
. ./test-lib.sh
+if ! svnadmin -h >/dev/null 2>&1
+then
+ skip_all='skipping svn-fe tests, svn not available'
+ test_done
+fi
+
svnconf=$PWD/svnconf
export svnconf