diff options
author | Ramsay Jones <ramsay@ramsay1.demon.co.uk> | 2011-01-10 23:21:26 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-01-11 13:01:43 -0800 |
commit | 7fad99e14af6da89efe0d078e19ac8b7c02a3b5d (patch) | |
tree | 9cd0971d3164d1c9935015ce72cf13b8921d0451 /t/t9157-git-svn-fetch-merge.sh | |
parent | a6fd3d4925ca3629e7edc73a60f5e1c50c1d5390 (diff) | |
download | git-7fad99e14af6da89efe0d078e19ac8b7c02a3b5d.tar.gz |
t9157-*.sh: Make the svn version check more precise
These tests require an svn version 1.5 or newer to run correctly.
In particular, all 1.4.x versions and earlier are too old, so fix
up the case label regex to cover this range exactly.
[Fix provided by Anders Kaseorg <andersk@MIT.EDU>]
Signed-off-by: Ramsay Jones <ramsay@ramsay1.demon.co.uk>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t9157-git-svn-fetch-merge.sh')
-rwxr-xr-x | t/t9157-git-svn-fetch-merge.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t9157-git-svn-fetch-merge.sh b/t/t9157-git-svn-fetch-merge.sh index accf61eb03..991d2aa1be 100755 --- a/t/t9157-git-svn-fetch-merge.sh +++ b/t/t9157-git-svn-fetch-merge.sh @@ -8,7 +8,7 @@ test_description='git svn merge detection' svn_ver="$(svn --version --quiet)" case $svn_ver in -[0-1].[0-4].[0-6]) +0.* | 1.[0-4].*) skip_all="skipping git-svn test - SVN too old ($svn_ver)" test_done ;; |