diff options
author | Brett Cannon <brett@python.org> | 2015-12-29 01:17:58 (GMT) |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2015-12-29 01:17:58 (GMT) |
commit | 3c61a448f106c7cafb050ff7be5c5c421273e68f (patch) | |
tree | b77ee4a57bfb792a390211225500ad121d3be607 /Lib/test/test_socket.py | |
parent | 2335f44d8e3b71814b26583f4942ee16738b7486 (diff) | |
download | cpython-3c61a448f106c7cafb050ff7be5c5c421273e68f.zip cpython-3c61a448f106c7cafb050ff7be5c5c421273e68f.tar.gz cpython-3c61a448f106c7cafb050ff7be5c5c421273e68f.tar.bz2 |
Issue #24725: Skip the test_socket.testFDPassEmpty on OS X.
In OS X 10.11, the test fails consistently due to a platform change
since 10.10. Thanks to Jeff Ramnani for the patch.
Diffstat (limited to 'Lib/test/test_socket.py')
-rw-r--r-- | Lib/test/test_socket.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_socket.py b/Lib/test/test_socket.py index 1e355ea..ad1efb2 100644 --- a/Lib/test/test_socket.py +++ b/Lib/test/test_socket.py @@ -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. |