Skip to content

Commit

Permalink
Merge branch 'rj/maint-t9159-svn-rev-notation'
Browse files Browse the repository at this point in the history
* rj/maint-t9159-svn-rev-notation:
  t9159-*.sh: skip for mergeinfo test for svn <= 1.4
  • Loading branch information
Junio C Hamano committed Oct 5, 2011
2 parents 9a33b69 + e29bee1 commit 18445fd
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions t/t9159-git-svn-no-parent-mergeinfo.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@
test_description='git svn handling of root commits in merge ranges'
. ./lib-git-svn.sh

svn_ver="$(svn --version --quiet)"
case $svn_ver in
0.* | 1.[0-4].*)
skip_all="skipping git-svn test - SVN too old ($svn_ver)"
test_done
;;
esac

test_expect_success 'test handling of root commits in merge ranges' '
mkdir -p init/trunk init/branches init/tags &&
echo "r1" > init/trunk/file.txt &&
Expand Down

0 comments on commit 18445fd

Please sign in to comment.