Commit 23d6eb65 authored by Victor Stinner's avatar Victor Stinner Committed by GitHub

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 de046446)
parent d64146c4
......@@ -606,6 +606,9 @@ class BaseTestAPI(unittest.TestCase):
# Note: this might fail on some platforms as OOB data is
# tenuously supported and rarely used.
if sys.platform == "darwin" and self.use_poll:
self.skipTest("poll may fail on macOS; see issue #28087")
class TestClient(BaseClient):
def handle_expt(self):
self.flag = True
......
......@@ -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.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment