summaryrefslogtreecommitdiff
path: root/Lib/test/libregrtest/runtest_mp.py
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2016-03-24 11:55:29 +0100
committerVictor Stinner <victor.stinner@gmail.com>2016-03-24 11:55:29 +0100
commitaa46ecac0d510818b17e9c6fbb8151acfe518cbd (patch)
tree65e268ebefda257d0a98ae2dd1bf98db0e02dd17 /Lib/test/libregrtest/runtest_mp.py
parentc160769c2af8a658c609cdd3c25b13697714aa56 (diff)
downloadcpython-aa46ecac0d510818b17e9c6fbb8151acfe518cbd.tar.gz
regrtest: mention in tests run sequentially or in parallel
Diffstat (limited to 'Lib/test/libregrtest/runtest_mp.py')
-rw-r--r--Lib/test/libregrtest/runtest_mp.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/libregrtest/runtest_mp.py b/Lib/test/libregrtest/runtest_mp.py
index e51b10015f..96db196f53 100644
--- a/Lib/test/libregrtest/runtest_mp.py
+++ b/Lib/test/libregrtest/runtest_mp.py
@@ -154,6 +154,8 @@ def run_tests_multiprocess(regrtest):
workers = [MultiprocessThread(pending, output, regrtest.ns)
for i in range(regrtest.ns.use_mp)]
+ print("Run tests in parallel using %s child processes"
+ % len(workers))
for worker in workers:
worker.start()