diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2009-06-29 13:54:42 +0000 |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2009-06-29 13:54:42 +0000 |
commit | 88909540ffb2f25daee528f5bc2859d6fe253cbc (patch) | |
tree | 24d7f61505b252441e0f1aff8d4bff2a59600acc /Doc | |
parent | 6fbdfdabb616caa7bc815fb8bfae802302ac2fff (diff) | |
download | cpython-git-88909540ffb2f25daee528f5bc2859d6fe253cbc.tar.gz |
Merged revisions 73072 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r73072 | antoine.pitrou | 2009-05-31 16:20:14 +0200 (dim., 31 mai 2009) | 4 lines
Issue #6152: New option '-j'/'--multiprocess' for regrtest allows running
regression tests in parallel, shortening the total runtime.
........
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/2.7.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Doc/whatsnew/2.7.rst b/Doc/whatsnew/2.7.rst index f5f7d19839..9a3b3e67ac 100644 --- a/Doc/whatsnew/2.7.rst +++ b/Doc/whatsnew/2.7.rst @@ -654,6 +654,12 @@ Other Changes and Fixes The :option:`-r` option also now reports the seed that was used (Added by Collin Winter.) +* The :file:`regrtest.py` script now takes a :option:`-j` switch + that takes an integer specifying how many tests run in parallel. This + allows to shorten the total runtime on multi-core machines. + This option is compatible with several other options, including the + :option:`-R` switch which is known to produce long runtimes. + (Added by Antoine Pitrou, :issue:`6152`.) .. ====================================================================== |