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

Test inconsistently hangs.
This commit is contained in:
Brett Cannon 2015-12-28 17:23:35 -08:00
parent 3bbad12b5b
commit 838629a1fe
1 changed files with 1 additions and 0 deletions

View File

@ -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)