Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 4b18dd3

Browse files
committed
Issue #25234: Skip test_eintr.test_open() under OS X to avoid hanging
1 parent b0db371 commit 4b18dd3

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

Lib/test/eintrdata/eintr_tester.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -341,6 +341,7 @@ def test_open(self):
341341
self._test_open("fp = open(path, 'r')\nfp.close()",
342342
self.python_open)
343343

344+
@unittest.skipIf(sys.platform == 'darwin', "hangs under OS X; see issue #25234")
344345
def os_open(self, path):
345346
fd = os.open(path, os.O_WRONLY)
346347
os.close(fd)

0 commit comments

Comments
 (0)