##// END OF EJS Templates
run-tests: fix --interactive option...
Pierre-Yves David -
r21388:9a1e3d70 default
parent child Browse files
Show More
@@ -590,9 +590,9 b' class Test(object):'
590 iolock.release()
590 iolock.release()
591 if answer.lower() in ('y', 'yes'):
591 if answer.lower() in ('y', 'yes'):
592 if self._test.endswith('.t'):
592 if self._test.endswith('.t'):
593 rename(self._errpath, self._testpath)
593 rename(self._errpath, self._path)
594 else:
594 else:
595 rename(self._errpath, '%s.out' % self._testpath)
595 rename(self._errpath, '%s.out' % self._path)
596
596
597 return '.', self._test, ''
597 return '.', self._test, ''
598
598
General Comments 0
You need to be logged in to leave comments. Login now