# HG changeset patch # User Bryan O'Sullivan # Date 1355170062 28800 # Node ID 96a0960a79091ffd5b98701b377444c5fe39a10e # Parent d38c648869bbdafe8437c3a330170262561dda52 run-tests: use correct python when run with --local [ original upstream message ] diff -r d38c648869bb -r 96a0960a7909 tests/run-tests.py --- a/tests/run-tests.py Tue Nov 27 13:09:05 2012 -0800 +++ b/tests/run-tests.py Mon Dec 10 12:07:42 2012 -0800 @@ -1030,6 +1030,8 @@ if INST: installhg(options) _checkhglib("Testing") + else: + usecorrectpython() optcopy = dict(options.__dict__) optcopy['jobs'] = 1 @@ -1149,6 +1151,8 @@ if INST: installhg(options) _checkhglib("Testing") + else: + usecorrectpython() if options.restart: orig = list(tests)