From: Thomas Rast Date: Tue, 26 Aug 2008 19:32:32 +0000 (+0200) Subject: git svn info: tests: let 'init' test run with SVN 1.5 X-Git-Tag: v1.6.1-rc1~262^2~10 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=c9ab9ee47836b7c3d8a0c23f7b98c5f14da40c39;p=git.git git svn info: tests: let 'init' test run with SVN 1.5 Signed-off-by: Thomas Rast Acked-by: Eric Wong --- diff --git a/t/t9119-git-svn-info.sh b/t/t9119-git-svn-info.sh index 5fd36a148..46676bc05 100755 --- a/t/t9119-git-svn-info.sh +++ b/t/t9119-git-svn-info.sh @@ -9,9 +9,9 @@ test_description='git-svn info' set -e # Tested with: svn, version 1.4.4 (r25188) -v=`svn --version | sed -n -e 's/^svn, version \(1\.4\.[0-9]\).*$/\1/p'` +v=`svn --version | sed -n -e 's/^svn, version \(1\.[0-9]*\.[0-9]*\).*$/\1/p'` case $v in -1.4.*) +1.[45].*) ;; *) say "skipping svn-info test (SVN version: $v not supported)"