summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2017-04-03 16:11:22 (GMT)
committerGitHub <noreply@github.com>2017-04-03 16:11:22 (GMT)
commit23d6eb656ec29140fcca1c9261b7953e2312b171 (patch)
tree94a3c3ebd6d6b4b04476c5dab6840a9c73ce56ae /Misc
parentd64146c4b776e569e5cf78d6ef561be1248612bd (diff)
downloadcpython-23d6eb656ec29140fcca1c9261b7953e2312b171.zip
cpython-23d6eb656ec29140fcca1c9261b7953e2312b171.tar.gz
cpython-23d6eb656ec29140fcca1c9261b7953e2312b171.tar.bz2
bpo-28087: Skip test_asyncore and test_eintr poll failures on macOS. (#462) (#973)
* 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. (cherry picked from commit de04644627f82d9dc48b3423def7ff5b4aa1926a)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 5a0335b..acd2015 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -137,6 +137,10 @@ Build
Tests
-----
+- 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.
+
- bpo-15083: Convert ElementTree doctests to unittests.