Skip excessive blank lines before commit body
[git/dscho.git] / t / lib-git-svn.sh
blobaf42ccc8d157e54b97de435194d22e5ed895ab4b
1 . ./test-lib.sh
3 if test -n "$NO_SVN_TESTS"
4 then
5 test_expect_success 'skipping git-svn tests, NO_SVN_TESTS defined' :
6 test_done
7 exit
8 fi
10 GIT_DIR=$PWD/.git
11 GIT_SVN_DIR=$GIT_DIR/svn/git-svn
12 SVN_TREE=$GIT_SVN_DIR/svn-tree
14 svn >/dev/null 2>&1
15 if test $? -ne 1
16 then
17 test_expect_success 'skipping git-svn tests, svn not found' :
18 test_done
19 exit
22 svnrepo=$PWD/svnrepo
24 perl -w -e "
25 use SVN::Core;
26 use SVN::Repos;
27 \$SVN::Core::VERSION gt '1.1.0' or exit(42);
28 SVN::Repos::create('$svnrepo', undef, undef, undef,
29 { 'fs-config' => 'fsfs'});
31 x=$?
32 if test $x -ne 0
33 then
34 if test $x -eq 42; then
35 err='Perl SVN libraries must be >= 1.1.0'
36 else
37 err='Perl SVN libraries not found or unusable, skipping test'
39 test_expect_success "$err" :
40 test_done
41 exit
44 svnrepo="file://$svnrepo"