mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
Issue #25234: Skip test_eintr.test_os_open under OS X.
Test inconsistently hangs.
This commit is contained in:
parent
3bbad12b5b
commit
838629a1fe
1 changed files with 1 additions and 0 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue