# HG changeset patch # User Idan Kamara # Date 1304791275 -10800 # Node ID 8e00906066c9f170507a582d93b4b9171fbbe3cb # Parent 7352ff757a480931f8367bb0ca035c98270a6bc4 run-tests: take the basepath when constructing the test temp dir so it's possible to run tests that are outside the test/ dir diff -r 7352ff757a48 -r 8e00906066c9 tests/run-tests.py --- a/tests/run-tests.py Sat May 07 20:56:43 2011 +0300 +++ b/tests/run-tests.py Sat May 07 21:01:15 2011 +0300 @@ -717,7 +717,7 @@ def ignore(msg): result('i', (test, msg)) - if (test.startswith("test-") and '~' not in test and + if (os.path.basename(test).startswith("test-") and '~' not in test and ('.' not in test or test.endswith('.py') or test.endswith('.bat') or test.endswith('.t'))): if not os.path.exists(test): @@ -796,7 +796,7 @@ # Make a tmp subdirectory to work in testtmp = os.environ["TESTTMP"] = os.environ["HOME"] = \ - os.path.join(HGTMP, test) + os.path.join(HGTMP, os.path.basename(test)) os.mkdir(testtmp) ret, out = runner(testpath, testtmp, options, [