# HG changeset patch # User Matt Mackall # Date 1370208171 18000 # Node ID 36dc45b1f427ef34c73f63abc34b5b9a948965f6 # Parent 6a7c76395b4c3f91f2a91e5a247e800b919eee99 run-tests: move HGRCPATH to env diff -r 6a7c76395b4c -r 36dc45b1f427 tests/run-tests.py --- a/tests/run-tests.py Sun Jun 02 16:22:51 2013 -0500 +++ b/tests/run-tests.py Sun Jun 02 16:22:51 2013 -0500 @@ -905,8 +905,6 @@ vlog("# Test", test) - createhgrc(HGRCPATH, options) - if os.path.exists(err): os.remove(err) # Remove any previous output files @@ -935,8 +933,11 @@ env["HGPORT"] = str(options.port) env["HGPORT1"] = str(options.port + 1) env["HGPORT2"] = str(options.port + 2) + env["HGRCPATH"] = os.path.join(HGTMP, '.hgrc') env["DAEMON_PIDS"] = os.path.join(HGTMP, 'daemon.pids') + createhgrc(env['HGRCPATH'], options) + if options.time: starttime = time.time() ret, out = runner(testpath, testtmp, options, replacements, env) @@ -1167,9 +1168,6 @@ break def runtests(options, tests): - global HGRCPATH - HGRCPATH = os.environ["HGRCPATH"] = os.path.join(HGTMP, '.hgrc') - try: if INST: installhg(options) @@ -1300,7 +1298,6 @@ d = os.getenv('TMP') tmpdir = tempfile.mkdtemp('', 'hgtests.', d) HGTMP = os.environ['HGTMP'] = os.path.realpath(tmpdir) - HGRCPATH = None os.environ["HGEDITOR"] = sys.executable + ' -c "import sys; sys.exit(0)"' os.environ["HGMERGE"] = "internal:merge"