##// END OF EJS Templates
run-tests: use correct python safely under --jobs
Bryan O'Sullivan -
r18050:5522a795 default
parent child Browse files
Show More
@@ -370,6 +370,10 b' def usecorrectpython():'
370 # windows fallback
370 # windows fallback
371 shutil.copyfile(sys.executable, mypython)
371 shutil.copyfile(sys.executable, mypython)
372 shutil.copymode(sys.executable, mypython)
372 shutil.copymode(sys.executable, mypython)
373 except OSError, err:
374 # child processes may race, which is harmless
375 if err.errno != errno.EEXIST:
376 raise
373
377
374 def installhg(options):
378 def installhg(options):
375 vlog("# Performing temporary installation of HG")
379 vlog("# Performing temporary installation of HG")
General Comments 0
You need to be logged in to leave comments. Login now