# HG changeset patch # User Matt Harbison # Date 1521869450 14400 # Node ID 656ac240f39284eec4435d25c01d71056aa4e8a5 # Parent 9e6d3465f17ef16b89cdc77fa5008a2499647b02 context: skip path conflicts by default when clearing unknown file (issue5776) Prior to adding path conflict checking in 989e884d1be9, the test-audit-path.t tests failed as shown here (but it was globbed away). 989e884d1be9 made it fail with a message about the destination manifest containing a conflict (though the no-symlink case wasn't updated). When the path conflict checking was gated behind an experimental config in 2a774cae3a03^::2a774cae3a03, the update started erroneously succeeding here. It turns out that the child of 989e884d1be9 is the origin of this change when path conflict checking is disabled, as shown by grafting the experimental config range on top of it. What's happening here is merge.batchget() is writing the symlink 'back' to wdir (but as a regular file for the no-symlink case), and then tries to write 'back/test', but calls wctx['back/test'].clearunknown() first. The code that's gated here was removing the newly written 'back' file, allowing 'back/test' to succeed. I tried checking for the dir components of 'back/test' in dirstate, and skipping removal if present. But that didn't work because the dirstate isn't updated after each file is written out. This is the last persistent test failure on Windows, so the testbot should start turning green now. \o/ diff -r 9e6d3465f17e -r 656ac240f392 mercurial/context.py --- a/mercurial/context.py Sat Mar 24 13:02:27 2018 +0900 +++ b/mercurial/context.py Sat Mar 24 01:30:50 2018 -0400 @@ -1808,10 +1808,11 @@ wvfs.audit(f) if wvfs.isdir(f) and not wvfs.islink(f): wvfs.rmtree(f, forcibly=True) - for p in reversed(list(util.finddirs(f))): - if wvfs.isfileorlink(p): - wvfs.unlink(p) - break + if self._repo.ui.configbool('experimental', 'merge.checkpathconflicts'): + for p in reversed(list(util.finddirs(f))): + if wvfs.isfileorlink(p): + wvfs.unlink(p) + break def setflags(self, l, x): self._repo.wvfs.setflags(self._path, l, x) diff -r 9e6d3465f17e -r 656ac240f392 tests/test-audit-path.t --- a/tests/test-audit-path.t Sat Mar 24 13:02:27 2018 +0900 +++ b/tests/test-audit-path.t Sat Mar 24 01:30:50 2018 -0400 @@ -109,8 +109,7 @@ #else ('back' will be a file and cause some other system specific error) $ hg update -Cr2 - back: is both a file and a directory - abort: * (glob) + abort: $TESTTMP/target/back/test: $ENOTDIR$ [255] #endif