3 if test -n "$NO_SVN_TESTS"
5 test_expect_success
'skipping git-svn tests, NO_SVN_TESTS defined' :
11 GIT_SVN_DIR
=$GIT_DIR/svn
/git-svn
12 SVN_TREE
=$GIT_SVN_DIR/svn-tree
17 test_expect_success
'skipping git-svn tests, svn not found' :
27 \$SVN::Core::VERSION gt '1.1.0' or exit(42);
28 system(qw/svnadmin create --fs-type fsfs/, '$svnrepo') == 0 or exit(41);
33 if test $x -eq 42; then
34 err
='Perl SVN libraries must be >= 1.1.0'
35 elif test $x -eq 41; then
36 err
='svnadmin failed to create fsfs repository'
38 err
='Perl SVN libraries not found or unusable, skipping test'
40 test_expect_success
"$err" :
46 svnrepo
="file://$svnrepo"
64 "$SVN_HTTPD_MODULE_PATH" \
65 /usr
/lib
/apache
2/modules \
66 /usr
/libexec
/apache2 \
70 SVN_HTTPD_MODULE_PATH
="$d"
76 if test -z "$SVN_HTTPD_PORT"
78 echo >&2 'SVN_HTTPD_PORT is not defined!'
84 cat > "$GIT_DIR/httpd.conf" <<EOF
85 ServerName "git-svn test"
87 DocumentRoot "$GIT_DIR"
88 PidFile "$GIT_DIR/httpd.pid"
89 LockFile logs/accept.lock
90 Listen 127.0.0.1:$SVN_HTTPD_PORT
91 LoadModule dav_module $SVN_HTTPD_MODULE_PATH/mod_dav.so
92 LoadModule dav_svn_module $SVN_HTTPD_MODULE_PATH/mod_dav_svn.so
98 "$SVN_HTTPD_PATH" -f "$GIT_DIR"/httpd.conf
-k start
99 svnrepo
=http
://127.0.0.1:$SVN_HTTPD_PORT/svn
103 test -z "$SVN_HTTPD_PORT" && return
104 "$SVN_HTTPD_PATH" -f "$GIT_DIR"/httpd.conf
-k stop
107 convert_to_rev_db
() {
108 perl
-w -- - "$@" <<\EOF
110 @ARGV
== 2 or die
"Usage: convert_to_rev_db <input> <output>";
111 open my
$wr, '+>', $ARGV[1] or die
"$!: couldn't open: $ARGV[1]";
112 open my
$rd, '<', $ARGV[0] or die
"$!: couldn't open: $ARGV[0]";
113 my
$size = (stat
($rd))[7];
114 ($size % 24) == 0 or die
"Inconsistent size: $size";
115 while (sysread
($rd, my
$buf, 24) == 24) {
116 my
($r, $c) = unpack
('NH40', $buf);
117 my
$offset = $r * 41;
118 seek
$wr, 0, 2 or die $
!;
120 if ($pos < $offset) {
121 for (1 ..
(($offset - $pos) / 41)) {
122 print
$wr (('0' x
40),"\n") or die $
!;
125 seek
$wr, $offset, 0 or die $
!;
126 print
$wr $c,"\n" or die $
!;