Commit 4b18dd33 authored by Brett Cannon's avatar Brett Cannon

Issue #25234: Skip test_eintr.test_open() under OS X to avoid hanging

parent b0db3718
......@@ -341,6 +341,7 @@ class SocketEINTRTest(EINTRBaseTest):
self._test_open("fp = open(path, 'r')\nfp.close()",
self.python_open)
@unittest.skipIf(sys.platform == 'darwin', "hangs under OS X; see issue #25234")
def os_open(self, path):
fd = os.open(path, os.O_WRONLY)
os.close(fd)
......
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