]> granicus.if.org Git - python/commitdiff
Issue #25234: Skip test_eintr.test_os_open under OS X.
authorBrett Cannon <brett@python.org>
Tue, 29 Dec 2015 01:23:35 +0000 (17:23 -0800)
committerBrett Cannon <brett@python.org>
Tue, 29 Dec 2015 01:23:35 +0000 (17:23 -0800)
Test inconsistently hangs.

Lib/test/eintrdata/eintr_tester.py

index 531d576df69a6816e1f8868d6b3317630fc19184..e1ed3da828910c485b1a62174057fdeea23a07d8 100644 (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)