# HG changeset patch # User Pulkit Goyal # Date 1534427628 -10800 # Node ID 02e80e37fbbc999398c0949404cc09361ce5ef62 # Parent 0600d09764dfc816cd42b490fa85109637fdf839 tests: demonstrate that IMM needs to be smarter with path conflicts When we try to rebase a commit which deletes an existing file and make a directory of the same name, rebase with IMM aborts. It should work fine just like the without IMM case. Differential Revision: https://phab.mercurial-scm.org/D4299 diff -r 0600d09764df -r 02e80e37fbbc tests/test-rebase-inmemory.t --- a/tests/test-rebase-inmemory.t Thu Aug 16 16:36:32 2018 +0300 +++ b/tests/test-rebase-inmemory.t Thu Aug 16 16:53:48 2018 +0300 @@ -155,6 +155,30 @@ | o 1: fc055c3b4d33 'b' |/ o 0: b173517d0057 'a' + + +Test reporting of path conflicts + + $ hg rm a + $ mkdir a + $ touch a/a + $ hg ci -Am "a/a" + adding a/a + $ hg tglog + @ 4: daf7dfc139cb 'a/a' + | + o 3: 844a7de3e617 'c' + | + | o 2: 09c044d2cb43 'd' + | | + | o 1: fc055c3b4d33 'b' + |/ + o 0: b173517d0057 'a' + + $ hg rebase -r . -d 2 + rebasing 4:daf7dfc139cb "a/a" (tip) + abort: error: 'a/a' conflicts with file 'a' in 2. + [255] $ cd ..