##// END OF EJS Templates
run-tests: handle windows crlf in .py tests again...
Mads Kiilerich -
r17800:f3c36faa default
parent child Browse files
Show More
@@ -476,6 +476,8 b' def pytest(test, wd, options, replacemen'
476 476 py3kswitch = options.py3k_warnings and ' -3' or ''
477 477 cmd = '%s%s "%s"' % (PYTHON, py3kswitch, test)
478 478 vlog("# Running", cmd)
479 if os.name == 'nt':
480 replacements.append((r'\r\n', '\n'))
479 481 return run(cmd, wd, options, replacements)
480 482
481 483 def shtest(test, wd, options, replacements):
General Comments 0
You need to be logged in to leave comments. Login now