##// END OF EJS Templates
testrunner: fix updating of .testtimes file...
Martin von Zweigbergk -
r35873:69d7fcd9 default
parent child Browse files
Show More
@@ -2017,7 +2017,7 b' class TestSuite(unittest.TestSuite):'
2017 def loadtimes(outputdir):
2017 def loadtimes(outputdir):
2018 times = []
2018 times = []
2019 try:
2019 try:
2020 with open(os.path.join(outputdir, b'.testtimes-')) as fp:
2020 with open(os.path.join(outputdir, b'.testtimes')) as fp:
2021 for line in fp:
2021 for line in fp:
2022 m = re.match('(.*?) ([0-9. ]+)', line)
2022 m = re.match('(.*?) ([0-9. ]+)', line)
2023 times.append((m.group(1),
2023 times.append((m.group(1),
@@ -374,6 +374,7 b' test --xunit support'
374 </testsuite>
374 </testsuite>
375
375
376 $ cat .testtimes
376 $ cat .testtimes
377 test-empty.t * (glob)
377 test-failure-unicode.t * (glob)
378 test-failure-unicode.t * (glob)
378 test-failure.t * (glob)
379 test-failure.t * (glob)
379 test-success.t * (glob)
380 test-success.t * (glob)
General Comments 0
You need to be logged in to leave comments. Login now