summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorgrzgrzgrz3 <grzgrzgrz3@gmail.com>2017-05-15 19:01:07 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2017-05-15 19:01:07 (GMT)
commit6924ed55c9807d69757e03bbe1caeec1104efacb (patch)
tree43f0fa4c58ae42adabdbf1a9df8983148808d95a /Misc
parent9d1983be503012e750f49d31b569f3fe4554c628 (diff)
downloadcpython-6924ed55c9807d69757e03bbe1caeec1104efacb.zip
cpython-6924ed55c9807d69757e03bbe1caeec1104efacb.tar.gz
cpython-6924ed55c9807d69757e03bbe1caeec1104efacb.tar.bz2
bpo-30357 each test in test_thread waits until all spawned threads finish (#1583)
* bpo-30357 each test in test_thread waits until all spawn threads finish * bpo-30357 each test in test_thread waits until all spawn threads finish * bpo-30357: test_thread now uses threading_cleanup() (#1592) test_thread: setUp() now uses support.threading_setup() and support.threading_cleanup() to wait until threads complete to avoid random side effects on following tests. Co-Authored-By: Victor Stinner <victor.stinner@gmail.com> * bpo-30357: test_thread now uses threading_cleanup() (#1592) test_thread: setUp() now uses support.threading_setup() and support.threading_cleanup() to wait until threads complete to avoid random side effects on following tests. Co-Authored-By: Victor Stinner <victor.stinner@gmail.com>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS4
2 files changed, 5 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 96cc90e..01bcd3b 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -507,6 +507,7 @@ Fabian Groffen
Eric Groo
Dag Gruneau
Filip GruszczyƄski
+Grzegorz Grzywacz
Thomas Guettler
Anuj Gupta
Michael Guravage
diff --git a/Misc/NEWS b/Misc/NEWS
index 9b551dc..059f2b3 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12109,6 +12109,10 @@ IDLE
Tests
-----
+- bpo-30357: test_thread: setUp() now uses support.threading_setup() and
+ support.threading_cleanup() to wait until threads complete to avoid
+ random side effects on following tests. Initial patch written by Grzegorz
+ Grzywacz.
- Refactor test_logging to use unittest.