2009-10-20 04:42:03 +02:00
|
|
|
#!/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' "
|
2009-10-30 21:10:17 +01:00
|
|
|
svnadmin load -q '$rawsvnrepo' \
|
|
|
|
< '$TEST_DIRECTORY/t9151/svn-mergeinfo.dump' &&
|
2009-10-20 04:42:03 +02:00
|
|
|
git svn init --minimize-url -R svnmerge \
|
2010-02-24 19:09:02 +01:00
|
|
|
--rewrite-root=http://svn.example.org \
|
2009-10-20 04:42:03 +02:00
|
|
|
-T trunk -b branches '$svnrepo' &&
|
|
|
|
git svn fetch --all
|
|
|
|
"
|
|
|
|
|
2009-12-19 17:26:26 +01:00
|
|
|
test_expect_success 'all svn merges became git merge commits' '
|
2009-12-19 17:20:30 +01:00
|
|
|
unmarked=$(git rev-list --parents --all --grep=Merge |
|
2010-10-31 02:46:54 +01:00
|
|
|
grep -v " .* " | cut -f1 -d" ") &&
|
2009-12-19 17:20:30 +01:00
|
|
|
[ -z "$unmarked" ]
|
|
|
|
'
|
git svn: handle SVN merges from revisions past the tip of the branch
When recording the revisions that it has merged, SVN sets the top
revision to be the latest revision in the repository, which is not
necessarily a revision on the branch that is being merged from. When
it is not on the branch, git-svn fails to add the extra parent to
represent the merge because it relies on finding the commit on the
branch that corresponds to the top of the SVN merge range.
In order to correctly handle this case, we look for the maximum
revision less than or equal to the top of the SVN merge range that is
actually on the branch being merged from.
[ew: This includes the following (squashed) commit to prevent
errors during bisect:]
Author: Toby Allsopp <toby.allsopp@navman.co.nz>
Date: Fri Nov 13 09:48:39 2009 +1300
git-svn: add (failing) test for SVN 1.5+ merge with intervening commit
This test exposes a bug in git-svn's handling of SVN 1.5+ mergeinfo
properties. The problematic case is when there is some commit on an
unrelated branch after the last commit on the merged-from branch.
When SVN records the mergeinfo property, it records the latest
revision in the whole repository, which, in the problematic case, is
not on the branch it is merging from.
To trigger the git-svn bug, we modify t9151 to include two SVN merges,
the second of which has an intervening commit. The SVN dump was
generated using SVN 1.6.6 (on Debian squeeze amd64).
Signed-off-by: Toby Allsopp <toby.allsopp@navman.co.nz>
Acked-by: Eric Wong <normalperson@yhbt.net>
2009-11-14 22:26:47 +01:00
|
|
|
|
2009-12-19 17:26:26 +01:00
|
|
|
test_expect_success 'cherry picks did not become git merge commits' '
|
2009-12-19 17:20:30 +01:00
|
|
|
bad_cherries=$(git rev-list --parents --all --grep=Cherry |
|
2010-10-31 02:46:54 +01:00
|
|
|
grep " .* " | cut -f1 -d" ") &&
|
2009-12-19 17:20:30 +01:00
|
|
|
[ -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 |
|
2010-10-31 02:46:54 +01:00
|
|
|
grep " .* " | cut -f1 -d" ") &&
|
2009-12-19 17:20:30 +01:00
|
|
|
[ -z "$bad_non_merges" ]
|
|
|
|
'
|
|
|
|
|
2010-02-22 19:12:53 +01:00
|
|
|
test_expect_success 'commit made to merged branch is reachable from the merge' '
|
2010-10-31 02:46:54 +01:00
|
|
|
before_commit=$(git rev-list --all --grep="trunk commit before merging trunk to b2") &&
|
|
|
|
merge_commit=$(git rev-list --all --grep="Merge trunk to b2") &&
|
|
|
|
not_reachable=$(git rev-list -1 $before_commit --not $merge_commit) &&
|
2010-02-22 08:57:21 +01:00
|
|
|
[ -z "$not_reachable" ]
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'merging two branches in one commit is detected correctly' '
|
2010-10-31 02:46:54 +01:00
|
|
|
f1_commit=$(git rev-list --all --grep="make f1 branch from trunk") &&
|
|
|
|
f2_commit=$(git rev-list --all --grep="make f2 branch from trunk") &&
|
|
|
|
merge_commit=$(git rev-list --all --grep="Merge f1 and f2 to trunk") &&
|
|
|
|
not_reachable=$(git rev-list -1 $f1_commit $f2_commit --not $merge_commit) &&
|
2010-02-22 08:57:21 +01:00
|
|
|
[ -z "$not_reachable" ]
|
|
|
|
'
|
|
|
|
|
2010-01-21 22:55:48 +01:00
|
|
|
test_expect_failure 'everything got merged in the end' '
|
2010-10-31 02:46:54 +01:00
|
|
|
unmerged=$(git rev-list --all --not master) &&
|
2009-12-19 17:20:30 +01:00
|
|
|
[ -z "$unmerged" ]
|
|
|
|
'
|
2009-10-20 04:42:03 +02:00
|
|
|
|
|
|
|
test_done
|