Mercurial > evolve
comparison tests/test-evolve-wdir.t @ 5777:c5dfbbe4363d
evolve: when relocating, optionally first try to do it using in-memory merge
This patch adds a config option to let run evolve's relocation step
using in-memory merge. It is disabled by default. When the option is
on, the relocation is first attempted in memory. If that fails because
of merge conflicts, it retries that commit in the working copy.
There are a few reasons that I made it configurable. The most
important one is that the precommit hook won't trigger when using
in-memory merge. Another reason is that it lets us roll out the
feature slowly to our users at Google.
For now, we also update the working copy after creating the commit (in the
successful case, when there are no merge conflicts). The next patch will make it
so we don't do that update.
Because of the unnecessary working-copy update, this patch doesn't
provide any benefit on its own. Evolving 29 commits that each change
one line in the hg slows down from ~4.5s to ~4.8s when the config
option is on.
I've added `#testcases inmemory ondisk` to select `.t` files. Almost
all differences are because of the new "hit merge conflicts" message
and retrying the merge. There's also one difference in
`test-stabilize-order.t` caused by the different order of working copy
updates (we now update the working copy at the end).
author | Martin von Zweigbergk <martinvonz@google.com> |
---|---|
date | Thu, 15 Oct 2020 15:40:36 -0700 |
parents | 272094174185 |
children | c2484b0217ee 46858e6f8b99 e6ae5af97683 df8df57a3ce3 |
comparison
equal
deleted
inserted
replaced
5776:453ba695c3d4 | 5777:c5dfbbe4363d |
---|---|
32 > evolve= | 32 > evolve= |
33 > rebase= | 33 > rebase= |
34 > [alias] | 34 > [alias] |
35 > glog = log --graph --template "{rev}:{node|short} ({phase}): {desc|firstline} {if(troubles, '[{troubles}]')}\n" | 35 > glog = log --graph --template "{rev}:{node|short} ({phase}): {desc|firstline} {if(troubles, '[{troubles}]')}\n" |
36 > EOF | 36 > EOF |
37 | |
38 #testcases inmemory ondisk | |
39 #if inmemory | |
40 $ cat >> $HGRCPATH <<EOF | |
41 > [experimental] | |
42 > evolution.in-memory = yes | |
43 > EOF | |
44 #endif | |
37 | 45 |
38 $ hg init repo | 46 $ hg init repo |
39 $ cd repo | 47 $ cd repo |
40 $ mkcommit c_A | 48 $ mkcommit c_A |
41 $ mkcommit c_B | 49 $ mkcommit c_B |