##// END OF EJS Templates
run-tests: use the common test path on Windows and Java...
Patrick Mezard -
r14338:862f8cd8 default
parent child Browse files
Show More
@@ -642,14 +642,6 b' def run(cmd, wd, options, replacements):'
642 ret = proc.wait()
642 ret = proc.wait()
643 return (ret, None)
643 return (ret, None)
644
644
645 if os.name == 'nt' or sys.platform.startswith('java'):
646 tochild, fromchild = os.popen4(cmd)
647 tochild.close()
648 output = fromchild.read()
649 ret = fromchild.close()
650 if ret is None:
651 ret = 0
652 else:
653 proc = Popen4(cmd, wd, options.timeout)
645 proc = Popen4(cmd, wd, options.timeout)
654 def cleanup():
646 def cleanup():
655 try:
647 try:
General Comments 0
You need to be logged in to leave comments. Login now