# HG changeset patch # User Martin von Zweigbergk # Date 1570905020 25200 # Node ID 5272bd7e75176dbced7e909ff98125399b43be1c # Parent 8343070ed75817ef2c073fd2b6367d77a0326f00 tests: add test showing that fixer patterns are currently relative to $PWD Differential Revision: https://phab.mercurial-scm.org/D7100 diff -r 8343070ed758 -r 5272bd7e7517 tests/test-fix.t --- a/tests/test-fix.t Mon Oct 14 12:55:40 2019 -0400 +++ b/tests/test-fix.t Sat Oct 12 11:30:20 2019 -0700 @@ -1298,7 +1298,7 @@ $ cat >> .hg/hgrc < [fix] > printcwd:command = "$PYTHON" -c "import os; print(os.getcwd())" - > printcwd:pattern = path:foo/bar + > printcwd:pattern = relpath:foo/bar > EOF $ mkdir foo @@ -1318,6 +1318,10 @@ $TESTTMP/subprocesscwd $ cat bar $TESTTMP/subprocesscwd + $ echo modified > bar + $ hg fix -w bar + $ cat bar + modified $ cd ../.. @@ -1373,7 +1377,7 @@ $ cd bar $ hg fix --working-dir --config "fix.cooltool:command=echo fixed" \ - > --config "fix.cooltool:pattern=rootglob:**" + > --config "fix.cooltool:pattern=glob:**" $ cd .. $ cat foo/file @@ -1409,7 +1413,7 @@ $ hg fix --working-dir foo bar baz \ > --config "fix.changedlines:command=\"$PYTHON\" print.py \"Line ranges:\"" \ > --config 'fix.changedlines:linerange="{first} through {last}"' \ - > --config 'fix.changedlines:pattern=rootglob:**' \ + > --config 'fix.changedlines:pattern=glob:**' \ > --config 'fix.changedlines:skipclean=false' $ cat foo