[Request] [+ ] D9918: config: test priority involving alias
marmoute (Pierre-Yves David)
phabricator at mercurial-scm.org
Sat Jan 30 01:39:30 UTC 2021
marmoute created this revision.
Herald added a reviewer: hg-reviewers.
Herald added a subscriber: mercurial-patches.
REPOSITORY
rHG Mercurial
BRANCH
default
REVISION DETAIL
https://phab.mercurial-scm.org/D9918
AFFECTED FILES
tests/test-config.t
CHANGE DETAILS
diff --git a/tests/test-config.t b/tests/test-config.t
--- a/tests/test-config.t
+++ b/tests/test-config.t
@@ -400,11 +400,15 @@
> pre-include= value-A
> %include ./included.rc
> post-include= value-A
+ > [command-templates]
+ > log = "value-A\n"
> EOF
$ cat > file-B.rc << EOF
> [config-test]
> basic = value-B
+ > [ui]
+ > logtemplate = "value-B\n"
> EOF
@@ -437,3 +441,18 @@
$ HGRCPATH="file-A.rc:file-B.rc" hg config config-test.basic --config config-test.basic=value-CLI
value-CLI
+
+Alias ordering
+--------------
+
+The higher level alternative should win.
+
+BROKEN: currently not the case.
+
+ $ HGRCPATH="file-A.rc" hg log -r .
+ value-A
+ $ HGRCPATH="file-B.rc" hg log -r .
+ value-B
+ $ HGRCPATH="file-A.rc:file-B.rc" hg log -r .
+ value-A (known-bad-output !)
+ value-B (missing-correct-output !)
To: marmoute, #hg-reviewers
Cc: mercurial-patches, mercurial-devel
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mercurial-scm.org/pipermail/mercurial-patches/attachments/20210130/2a242365/attachment-0001.html>
More information about the Mercurial-patches
mailing list