summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2017-05-17 00:05:29 (GMT)
committerGitHub <noreply@github.com>2017-05-17 00:05:29 (GMT)
commitaeb644714d37fb974e3acdf7daef031461e1283f (patch)
treee08e9f796898f44492dbfc327ceceaf819048b17 /Misc/NEWS
parentc9ba45d1b71d86321e5422e8a2cbe6e52aaba6f4 (diff)
downloadcpython-aeb644714d37fb974e3acdf7daef031461e1283f.zip
cpython-aeb644714d37fb974e3acdf7daef031461e1283f.tar.gz
cpython-aeb644714d37fb974e3acdf7daef031461e1283f.tar.bz2
bpo-30357: test_thread now uses threading_cleanup() (#1592) (#1623)
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: Grzegorz Grzywacz <grzegorz.grzywacz@nazwa.pl> (cherry picked from commit 79ef7f8e88a4972c4aecf95cfc5cd934f1861e08)
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 16cb60c..9386cb4 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -235,6 +235,11 @@ Build
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.
+
- bpo-28087: Skip test_asyncore and test_eintr poll failures on macOS.
Skip some tests of select.poll when running on macOS due to unresolved
issues with the underlying system poll function on some macOS versions.