##// END OF EJS Templates
run-tests: convert windows paths to unix
Mads Kiilerich -
r15448:873f94ec default
parent child Browse files
Show More
@@ -87,7 +87,7 b' def Popen4(cmd, wd, timeout):'
87 87 SKIPPED_STATUS = 80
88 88 SKIPPED_PREFIX = 'skipped: '
89 89 FAILED_PREFIX = 'hghave check failed: '
90 PYTHON = sys.executable
90 PYTHON = sys.executable.replace('\\', '/')
91 91 IMPL_PATH = 'PYTHONPATH'
92 92 if 'java' in sys.platform:
93 93 IMPL_PATH = 'JYTHONPATH'
@@ -865,7 +865,7 b' def runone(options, test):'
865 865
866 866 # Make a tmp subdirectory to work in
867 867 testtmp = os.environ["TESTTMP"] = os.environ["HOME"] = \
868 os.path.join(HGTMP, os.path.basename(test))
868 os.path.join(HGTMP, os.path.basename(test)).replace('\\', '/')
869 869
870 870 os.mkdir(testtmp)
871 871 ret, out = runner(testpath, testtmp, options, [
General Comments 0
You need to be logged in to leave comments. Login now