##// END OF EJS Templates
run-tests: allow spaces in the --view tool...
Matt Harbison -
r41726:7855a949 default
parent child Browse files
Show More
@@ -1902,8 +1902,9 b' class TestResult(unittest._TextTestResul'
1902 pass
1902 pass
1903 elif self._options.view:
1903 elif self._options.view:
1904 v = self._options.view
1904 v = self._options.view
1905 os.system(r"%s %s %s" %
1905 subprocess.call(r'"%s" "%s" "%s"' %
1906 (v, _strpath(test.refpath), _strpath(test.errpath)))
1906 (v, _strpath(test.refpath),
1907 _strpath(test.errpath)), shell=True)
1907 else:
1908 else:
1908 servefail, lines = getdiff(expected, got,
1909 servefail, lines = getdiff(expected, got,
1909 test.refpath, test.errpath)
1910 test.refpath, test.errpath)
General Comments 0
You need to be logged in to leave comments. Login now