summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2016-08-19 15:54:25 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2016-08-19 15:54:25 (GMT)
commitf2abf5c11a98bc341add7a695757564a186a45d6 (patch)
tree9589e43a37c29e32b1ae2823fdb73b5991638987
parent59e9ca6bdab845a2a2ac3f8c58a4e8ba8e239440 (diff)
downloadcpython-f2abf5c11a98bc341add7a695757564a186a45d6.zip
cpython-f2abf5c11a98bc341add7a695757564a186a45d6.tar.gz
cpython-f2abf5c11a98bc341add7a695757564a186a45d6.tar.bz2
regrtest: replace "Result:" with "Tests result:"
-rw-r--r--Lib/test/libregrtest/main.py2
-rw-r--r--Lib/test/test_regrtest.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/libregrtest/main.py b/Lib/test/libregrtest/main.py
index 78c52bd..b9d7ab4 100644
--- a/Lib/test/libregrtest/main.py
+++ b/Lib/test/libregrtest/main.py
@@ -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())
diff --git a/Lib/test/test_regrtest.py b/Lib/test/test_regrtest.py
index 40862e6..dc15461 100644
--- a/Lib/test/test_regrtest.py
+++ b/Lib/test/test_regrtest.py
@@ -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)