run-tests: take the basepath when constructing the test temp dir
so it's possible to run tests that are outside the test/ dir
[ original upstream message ]
--- 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, [