Mercurial > evolve
changeset 4688:75329efe56a9 stable
tests: demonstrate obsmarker creation after discarding conflicting changes
Continued evolve creates an incorrect obsmarker that says 2 is a successor of
1. It's incorrect because 1 was dropped as it created no changes to commit
(after conflict resolution that discarded its changes).
If evolve does the same thing in one go (e.g. just by using --tool :local and
without subsequent need to continue) the obsmarker is correct.
author | Anton Shestakov <av6@dwimlabs.net> |
---|---|
date | Sat, 22 Dec 2018 18:31:32 +0800 |
parents | 313565dd75e3 |
children | 27947b17cfaf |
files | tests/test-evolve-issue5967.t |
diffstat | 1 files changed, 78 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tests/test-evolve-issue5967.t Sat Dec 22 18:31:32 2018 +0800 @@ -0,0 +1,78 @@ +hg evolve --continue and obsmarkers after conflict resolution with no changes to commit (issue5967) +https://bz.mercurial-scm.org/show_bug.cgi?id=5967 + + $ . $TESTDIR/testlib/common.sh + + $ hg init issue5967 + $ cd issue5967 + $ cat > .hg/hgrc << EOF + > [alias] + > glog = log -GT "{rev}: {desc}" + > [extensions] + > evolve= + > EOF + + $ echo apple > a + $ hg ci -qAm 'apple' + $ echo banana > a + $ hg ci -m 'banana' + +Amending revision 0 in a way that causes conflicts + + $ hg prev + 1 files updated, 0 files merged, 0 files removed, 0 files unresolved + [0] apple + $ echo apricot > a + $ hg amend -m 'apricot' + 1 new orphan changesets + + $ hg glog + @ 2: apricot + + * 1: banana + | + x 0: apple + + +Trying to evolve, then manually discarding changes from revision 1 + + $ hg evolve + move:[1] banana + atop:[2] apricot + merging a + warning: conflicts while merging a! (edit, then use 'hg resolve --mark') + fix conflicts and see `hg help evolve.interrupted` + [1] + + $ echo apricot > a + $ hg resolve --mark a + (no more unresolved files) + continue: hg evolve --continue + +This will correctly notice that revision 1 can be dropped + + $ hg evolve --continue + evolving 1:dd9b5dd30cd6 "banana" + evolution of 1:dd9b5dd30cd6 created no changes to commit + working directory is now at 4d6fec23dcc4 + $ hg glog + @ 2: apricot + + $ hg olog --all + @ 4d6fec23dcc4 (2) apricot + |\ + x | 3ba7db0ce860 (0) apple + / rewritten(description, content) as 4d6fec23dcc4 using amend by test (Thu Jan 01 00:00:00 1970 +0000) + | + x dd9b5dd30cd6 (1) banana + rewritten(description, parent, content) as 4d6fec23dcc4 using evolve by test (Thu Jan 01 00:00:00 1970 +0000) + + $ hg olog --hidden --all 1 + @ 4d6fec23dcc4 (2) apricot + |\ + x | 3ba7db0ce860 (0) apple + / rewritten(description, content) as 4d6fec23dcc4 using amend by test (Thu Jan 01 00:00:00 1970 +0000) + | + x dd9b5dd30cd6 (1) banana + rewritten(description, parent, content) as 4d6fec23dcc4 using evolve by test (Thu Jan 01 00:00:00 1970 +0000) +