diff options
author | Brett Cannon <brett@python.org> | 2016-01-22 23:55:56 (GMT) |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2016-01-22 23:55:56 (GMT) |
commit | 4b18dd339a9919e6f5fa3485c8b871ed19d9e391 (patch) | |
tree | d6d3dce09a5d3238e9829d4aa7afecfa78d1dfcd /Lib/test/eintrdata | |
parent | b0db3718d44d4ef8aa257a166299bc35f0e08b87 (diff) | |
download | cpython-4b18dd339a9919e6f5fa3485c8b871ed19d9e391.zip cpython-4b18dd339a9919e6f5fa3485c8b871ed19d9e391.tar.gz cpython-4b18dd339a9919e6f5fa3485c8b871ed19d9e391.tar.bz2 |
Issue #25234: Skip test_eintr.test_open() under OS X to avoid hanging
Diffstat (limited to 'Lib/test/eintrdata')
-rw-r--r-- | Lib/test/eintrdata/eintr_tester.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/eintrdata/eintr_tester.py b/Lib/test/eintrdata/eintr_tester.py index e1ed3da..1cb86e5 100644 --- a/Lib/test/eintrdata/eintr_tester.py +++ b/Lib/test/eintrdata/eintr_tester.py @@ -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) |