# HG changeset patch # User Gregory Szorc # Date 2018-04-04 21:25:20 # Node ID afd7b0afe4a6db12ab5dfd45826de1ce74153be4 # Parent 76d2115cb817e616d72fe9efb362900742e42c13 tests: don't drop global hgrc Various tests are failing when the simple store extension is loaded because the test overrides HGRCPATH and preempts loading of extensions that were injected via --extra-config-opt. In most cases, it is acceptable to always load the global HGRCPATH. So this commit changes a couple of tests so the global HGRCPATH is still pulled in. Differential Revision: https://phab.mercurial-scm.org/D3098 diff --git a/tests/test-command-template.t b/tests/test-command-template.t --- a/tests/test-command-template.t +++ b/tests/test-command-template.t @@ -284,7 +284,8 @@ Test templates and style maps in files: so it can be included in hgrc - $ cat <<'EOF' > myhgrc + $ cat < myhgrc + > %include $HGRCPATH > %include map-simple > [templates] > foo = "{changeset}" diff --git a/tests/test-wireproto.t b/tests/test-wireproto.t --- a/tests/test-wireproto.t +++ b/tests/test-wireproto.t @@ -114,10 +114,7 @@ HTTP without args-in-POST: HTTP without the httpheader capability: - $ HGRCPATH="`pwd`/repo/.hgrc" - $ export HGRCPATH - $ CAP=httpheader - $ . "$TESTDIR/notcapable" + $ CAP=httpheader . "$TESTDIR/notcapable" $ hg serve -R repo -p $HGPORT2 -d --pid-file=hg2.pid -E error2.log -A access2.log $ cat hg2.pid >> $DAEMON_PIDS