summaryrefslogtreecommitdiff
path: root/t/lib-git-svn.sh
diff options
context:
space:
mode:
authorAlec Berryman <alec@thened.net>2008-09-14 21:14:15 (GMT)
committerJunio C Hamano <gitster@pobox.com>2008-09-19 02:20:34 (GMT)
commitdd9da51fe261f723d206fdd5e4874c25937d1b87 (patch)
tree28db15ae9e9283b5341bc5503f33d10db7088262 /t/lib-git-svn.sh
parent903e09a3ecca8941b32bae08b821545941591348 (diff)
downloadgit-dd9da51fe261f723d206fdd5e4874c25937d1b87.zip
git-dd9da51fe261f723d206fdd5e4874c25937d1b87.tar.gz
git-dd9da51fe261f723d206fdd5e4874c25937d1b87.tar.bz2
git-svn: factor out svnserve test code for later use
Signed-off-by: Alec Berryman <alec@thened.net> Acked-by: Eric Wong <normalperson@yhbt.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.sh17
1 files changed, 17 insertions, 0 deletions
diff --git a/t/lib-git-svn.sh b/t/lib-git-svn.sh
index a841df2..5b5f288 100644
--- a/t/lib-git-svn.sh
+++ b/t/lib-git-svn.sh
@@ -135,3 +135,20 @@ close $wr or die $!;
close $rd or die $!;
EOF
}
+
+require_svnserve () {
+ 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" \
+ --listen-once \
+ --listen-host 127.0.0.1 &
+}
+