Commit 838629a1 authored by Brett Cannon's avatar Brett Cannon

Issue #25234: Skip test_eintr.test_os_open under OS X.

Test inconsistently hangs.
parent 3bbad12b
......@@ -345,6 +345,7 @@ class SocketEINTRTest(EINTRBaseTest):
fd = os.open(path, os.O_WRONLY)
os.close(fd)
@unittest.skipIf(sys.platform == "darwin", "hangs under OS X; see issue #25234")
def test_os_open(self):
self._test_open("fd = os.open(path, os.O_RDONLY)\nos.close(fd)",
self.os_open)
......
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