mirror of
https://github.com/git/git.git
synced 2024-11-24 02:17:02 +08:00
33973a5b17
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>
42 lines
1.0 KiB
Bash
Executable File
42 lines
1.0 KiB
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Copyright (c) 2007, 2009 Sam Vilain
|
|
#
|
|
|
|
test_description='git-svn svn mergeinfo properties'
|
|
|
|
. ./lib-git-svn.sh
|
|
|
|
test_expect_success 'load svn dump' "
|
|
svnadmin load -q '$rawsvnrepo' \
|
|
< '$TEST_DIRECTORY/t9151/svn-mergeinfo.dump' &&
|
|
git svn init --minimize-url -R svnmerge \
|
|
-T trunk -b branches '$svnrepo' &&
|
|
git svn fetch --all
|
|
"
|
|
|
|
test_expect_failure 'all svn merges became git merge commits' '
|
|
unmarked=$(git rev-list --parents --all --grep=Merge |
|
|
grep -v " .* " | cut -f1 -d" ")
|
|
[ -z "$unmarked" ]
|
|
'
|
|
|
|
test_expect_failure 'cherry picks did not become git merge commits' '
|
|
bad_cherries=$(git rev-list --parents --all --grep=Cherry |
|
|
grep " .* " | cut -f1 -d" ")
|
|
[ -z "$bad_cherries" ]
|
|
'
|
|
|
|
test_expect_success 'svn non-merge merge commits did not become git merge commits' '
|
|
bad_non_merges=$(git rev-list --parents --all --grep=non-merge |
|
|
grep " .* " | cut -f1 -d" ")
|
|
[ -z "$bad_non_merges" ]
|
|
'
|
|
|
|
test_expect_success 'everything got merged in the end' '
|
|
unmerged=$(git rev-list --all --not master)
|
|
[ -z "$unmerged" ]
|
|
'
|
|
|
|
test_done
|