Make run-tests.py work when invoked outside of tests.
authorBrendan Cully <brendan@kublai.com>
Wed, 29 Aug 2007 16:50:21 -0700
changeset 5264 b817d17c7ee5
parent 5263 d59ed18ec2d0
child 5265 980da86fc66a
Make run-tests.py work when invoked outside of tests. This makes it usable for unbundled extensions.
tests/run-tests.py
--- a/tests/run-tests.py
+++ b/tests/run-tests.py
@@ -134,7 +134,8 @@ def install_hg():
     vlog("# Performing temporary installation of HG")
     installerrs = os.path.join("tests", "install.err")
 
-    os.chdir("..") # Get back to hg root
+    # Run installer in hg root
+    os.chdir(os.path.join(os.path.dirname(sys.argv[0]), '..'))
     cmd = ('%s setup.py clean --all'
            ' install --force --home="%s" --install-lib="%s"'
            ' --install-scripts="%s" >%s 2>&1'