# HG changeset patch # User Mads Kiilerich # Date 1339347042 -7200 # Node ID 2a95830cff776ca1cd80efe19776aab6bb64f016 # Parent 671c73d523cfafb92258559ffaa31becc6b6785c tests: use the right directory for running hghave from run-tests.py diff -r 671c73d523cf -r 2a95830cff77 tests/run-tests.py --- a/tests/run-tests.py Sun Jun 10 18:50:42 2012 +0200 +++ b/tests/run-tests.py Sun Jun 10 18:50:42 2012 +0200 @@ -601,7 +601,7 @@ # TODO: do something smarter when all other uses of hghave is gone tdir = TESTDIR.replace('\\', '/') proc = Popen4('%s -c "%s/hghave %s"' % - (options.shell, tdir, ' '.join(reqs)), TESTDIR, 0) + (options.shell, tdir, ' '.join(reqs)), wd, 0) proc.communicate() ret = proc.wait() if wifexited(ret):