summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_socket.py
diff options
context:
space:
mode:
authorBrett Cannon <brett@python.org>2015-12-29 01:17:58 (GMT)
committerBrett Cannon <brett@python.org>2015-12-29 01:17:58 (GMT)
commit3c61a448f106c7cafb050ff7be5c5c421273e68f (patch)
treeb77ee4a57bfb792a390211225500ad121d3be607 /Lib/test/test_socket.py
parent2335f44d8e3b71814b26583f4942ee16738b7486 (diff)
downloadcpython-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.py1
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.