diff options
author | Thomas Rast <trast@student.ethz.ch> | 2008-08-26 21:32:32 +0200 |
---|---|---|
committer | Eric Wong <normalperson@yhbt.net> | 2008-09-05 16:58:39 -0700 |
commit | c9ab9ee47836b7c3d8a0c23f7b98c5f14da40c39 (patch) | |
tree | b4306cd6228f5cd9869e4fff6e59c250661198f7 /t/t9119-git-svn-info.sh | |
parent | 2cb611054a9597a00e9387c77e75d82e78982e60 (diff) | |
download | git-c9ab9ee47836b7c3d8a0c23f7b98c5f14da40c39.tar.gz |
git svn info: tests: let 'init' test run with SVN 1.5
Signed-off-by: Thomas Rast <trast@student.ethz.ch>
Acked-by: Eric Wong <normalperson@yhbt.net>
Diffstat (limited to 't/t9119-git-svn-info.sh')
-rwxr-xr-x | t/t9119-git-svn-info.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/t9119-git-svn-info.sh b/t/t9119-git-svn-info.sh index 5fd36a1483..46676bc05e 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)" |