summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2017-06-27 12:03:12 (GMT)
committerGitHub <noreply@github.com>2017-06-27 12:03:12 (GMT)
commiteef254d6c6b13db2f3d6a2f219bc76e84416f59c (patch)
tree939c87e0c65e3ee699b285949a3f5b079db10597 /Misc/NEWS.d/next
parent85b34edd8b575b918490afbcb0db6f791874dbdd (diff)
downloadcpython-eef254d6c6b13db2f3d6a2f219bc76e84416f59c.zip
cpython-eef254d6c6b13db2f3d6a2f219bc76e84416f59c.tar.gz
cpython-eef254d6c6b13db2f3d6a2f219bc76e84416f59c.tar.bz2
bpo-30383: Add NEWS entry for backported regrtest (#2438)
Diffstat (limited to 'Misc/NEWS.d/next')
-rw-r--r--Misc/NEWS.d/next/Tests/2017-06-27-13-52-43.bpo-30383.rCmrv7.rst14
1 files changed, 14 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Tests/2017-06-27-13-52-43.bpo-30383.rCmrv7.rst b/Misc/NEWS.d/next/Tests/2017-06-27-13-52-43.bpo-30383.rCmrv7.rst
new file mode 100644
index 0000000..046e8c9
--- /dev/null
+++ b/Misc/NEWS.d/next/Tests/2017-06-27-13-52-43.bpo-30383.rCmrv7.rst
@@ -0,0 +1,14 @@
+regrtest: Enhance regrtest and backport features from the master branch.
+
+Add options: --coverage, --testdir, --list-tests (list test files, don't run
+them), --list-cases (list test identifiers, don't run them, :issue:`30523`),
+--matchfile (load a list of test filters from a text file, :issue:`30540`),
+--slowest (alias to --slow).
+
+Enhance output: add timestamp, test result, currently running tests, "Tests
+result: xxx" summary with total duration, etc.
+
+Fix reference leak hunting in regrtest, --huntrleaks: regrtest now warms up
+caches, create explicitly all internal singletons which are created on
+demand to prevent false positives when checking for reference leaks.
+(:issue:`30675`).