summaryrefslogtreecommitdiff
path: root/t/t9151-svn-mergeinfo.sh
diff options
context:
space:
mode:
authorSam Vilain <sam@vilain.net>2009-12-19 16:22:42 (GMT)
committerEric Wong <normalperson@yhbt.net>2009-12-21 10:32:50 (GMT)
commit33973a5b179278c563624fcb45c223f03031b242 (patch)
tree5359e45455d6b0a943c22114e85facaba9792999 /t/t9151-svn-mergeinfo.sh
parent7d944c3399c4145293d599e1ddc76d1ac0c1e118 (diff)
downloadgit-33973a5b179278c563624fcb45c223f03031b242.zip
git-33973a5b179278c563624fcb45c223f03031b242.tar.gz
git-33973a5b179278c563624fcb45c223f03031b242.tar.bz2
git-svn: fix some mistakes with interpreting SVN mergeinfo commit ranges
SVN's list of commit ranges in mergeinfo tickets is inclusive, whereas git commit ranges are exclusive on the left hand side. Also, the end points of the commit ranges may not exist; they simply delineate ranges of commits which may or may not exist. Fix these two mistakes. Signed-off-by: Sam Vilain <sam@vilain.net> Acked-by: Eric Wong <normalperson@yhbt.net>
Diffstat (limited to 't/t9151-svn-mergeinfo.sh')
-rwxr-xr-xt/t9151-svn-mergeinfo.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t9151-svn-mergeinfo.sh b/t/t9151-svn-mergeinfo.sh
index dc3478f..f6e00ea 100755
--- a/t/t9151-svn-mergeinfo.sh
+++ b/t/t9151-svn-mergeinfo.sh
@@ -33,7 +33,7 @@ test_expect_success 'svn non-merge merge commits did not become git merge commit
[ -z "$bad_non_merges" ]
'
-test_expect_failure 'everything got merged in the end' '
+test_expect_success 'everything got merged in the end' '
unmerged=$(git rev-list --all --not master)
[ -z "$unmerged" ]
'