Commit f2abf5c1 authored by Victor Stinner's avatar Victor Stinner

regrtest: replace "Result:" with "Tests result:"

parent 59e9ca6b
......@@ -437,7 +437,7 @@ class Regrtest:
result = "INTERRUPTED"
else:
result = "SUCCESS"
print("Result: %s" % result)
print("Tests result: %s" % result)
if self.ns.runleaks:
os.system("leaks %d" % os.getpid())
......
......@@ -407,7 +407,7 @@ class BaseTestCase(unittest.TestCase):
result = 'INTERRUPTED'
else:
result = 'SUCCESS'
self.check_line(output, 'Result: %s' % result)
self.check_line(output, 'Tests result: %s' % result)
def parse_random_seed(self, output):
match = self.regex_search(r'Using random seed ([0-9]+)', output)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment