]> granicus.if.org Git - python/commitdiff
Issue #24725: Skip the test_socket.testFDPassEmpty on OS X.
authorBrett Cannon <brett@python.org>
Tue, 29 Dec 2015 01:17:58 +0000 (17:17 -0800)
committerBrett Cannon <brett@python.org>
Tue, 29 Dec 2015 01:17:58 +0000 (17:17 -0800)
In OS X 10.11, the test fails consistently due to a platform change
since 10.10. Thanks to Jeff Ramnani for the patch.

Lib/test/test_socket.py

index 1e355ea8fe285ef5163572efdff8cf4103cefd13..ad1efb281868f6e6b468ed74d4060c3313f1a093 100644 (file)
@@ -2809,6 +2809,7 @@ class SCMRightsTest(SendrecvmsgServerTimeoutBase):
             nbytes = self.sendmsgToServer([msg])
         self.assertEqual(nbytes, len(msg))
 
+    @unittest.skipIf(sys.platform == "darwin", "skipping, see issue #24725")
     def testFDPassEmpty(self):
         # Try to pass an empty FD array.  Can receive either no array
         # or an empty array.