D7569: tests: show that fileset patterns don't work with `fix` when not in repo root

mharbison72 (Matt Harbison) phabricator at mercurial-scm.org
Sat Dec 21 09:42:07 EST 2019


Closed by commit rHG9595b6a9f0d5: tests: show that fileset patterns don't work with `fix` when not in repo root (authored by mharbison72).
This revision was automatically updated to reflect the committed changes.

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D7569?vs=18892&id=18901

CHANGES SINCE LAST ACTION
  https://phab.mercurial-scm.org/D7569/new/

REVISION DETAIL
  https://phab.mercurial-scm.org/D7569

AFFECTED FILES
  tests/test-fix.t

CHANGE DETAILS

diff --git a/tests/test-fix.t b/tests/test-fix.t
--- a/tests/test-fix.t
+++ b/tests/test-fix.t
@@ -1303,10 +1303,13 @@
   > [fix]
   > printcwd:command = "$PYTHON" -c "import os; print(os.getcwd())"
   > printcwd:pattern = relpath:foo/bar
+  > filesetpwd:command = "$PYTHON" -c "import os; print('fs: ' + os.getcwd())"
+  > filesetpwd:pattern = set:**quux
   > EOF
 
   $ mkdir foo
   $ printf "bar\n" > foo/bar
+  $ printf "quux\n" > quux
   $ hg commit -Aqm blah
 
   $ hg fix -w -r . foo/bar
@@ -1318,15 +1321,39 @@
   $ cd foo
 
   $ hg fix -w -r . bar
-  $ hg cat -r tip bar
+  $ hg cat -r tip bar ../quux
   $TESTTMP/subprocesscwd
-  $ cat bar
+  quux
+  $ cat bar ../quux
   $TESTTMP/subprocesscwd
+  quux
   $ echo modified > bar
   $ hg fix -w bar
   $ cat bar
   $TESTTMP/subprocesscwd
 
+Apparently fixing p1() and its descendants doesn't include wdir() unless
+explicitly stated.
+
+BROKEN: fileset matches aren't relative to repo.root for commits
+
+  $ hg fix -r '.::'
+  $ hg cat -r . ../quux
+  quux
+  $ hg cat -r tip ../quux
+  quux
+  $ cat ../quux
+  quux
+
+Clean files are not fixed unless explicitly named
+  $ echo 'dirty' > ../quux
+
+BROKEN: fileset matches aren't relative to repo.root for wdir
+
+  $ hg fix --working-dir
+  $ cat ../quux
+  dirty
+
   $ cd ../..
 
 Tools configured without a pattern are ignored. It would be too dangerous to



To: mharbison72, #hg-reviewers, durin42, pulkit
Cc: mercurial-devel


More information about the Mercurial-devel mailing list