# HG changeset patch # User Pierre-Yves David # Date 1677085654 -3600 # Node ID d956ceed3289471ac326c03e3955033649547604 # Parent a9a13b160db9f4ca76007efb20d660fe4b8d4a9a transaction: tests we don't overwrite branch changes on abort We actually do not! Great. …Why are doing a backup of the `branch` files at transaction creation then‽ diff -r a9a13b160db9 -r d956ceed3289 tests/test-transaction-wc-rollback-race.t --- a/tests/test-transaction-wc-rollback-race.t Wed Feb 22 18:05:36 2023 +0100 +++ b/tests/test-transaction-wc-rollback-race.t Wed Feb 22 18:07:34 2023 +0100 @@ -155,3 +155,36 @@ $ hg status R default_a (missing-correct-output !) $ hg revert --all --quiet + +Changing branch from default +---------------------------- + + $ hg branch + default + $ hg phase --public --rev 0 2> ../log.err & + $ $RUNTESTDIR/testlib/wait-on-file 5 $TESTTMP/transaction-waiting + $ hg branch celeste + marked working directory as branch celeste + $ hg branch + celeste + $ touch $TESTTMP/transaction-continue + $ wait + $ hg branch + celeste + +Changing branch from another one +-------------------------------- + + $ hg up babar --quiet + $ hg branch + babar + $ hg phase --public --rev 0 2> ../log.err & + $ $RUNTESTDIR/testlib/wait-on-file 5 $TESTTMP/transaction-waiting + $ hg branch celeste + marked working directory as branch celeste + $ hg branch + celeste + $ touch $TESTTMP/transaction-continue + $ wait + $ hg branch + celeste