bpo-24725: Skip the test_socket.testFDPassEmpty on OS X (#1427) · python/cpython@5e9c110 (original) (raw)

Skip to content

Provide feedback

Saved searches

Use saved searches to filter your results more quickly

Sign up

Appearance settings

Commit 5e9c110

bpo-24725: Skip the test_socket.testFDPassEmpty on OS X (#1427)

In OS X 10.11, the test fails consistently due to a platform change since 10.10. Thanks to Jeff Ramnani for the patch. (cherry picked from commit 3c61a44)

File tree

1 file changed

lines changed

1 file changed

lines changed

Lines changed: 1 addition & 0 deletions

Original file line number Diff line number Diff line change
@@ -2844,6 +2844,7 @@ def sendAncillaryIfPossible(self, msg, ancdata):
2844 2844 nbytes = self.sendmsgToServer([msg])
2845 2845 self.assertEqual(nbytes, len(msg))
2846 2846
2847 +@unittest.skipIf(sys.platform == "darwin", "skipping, see issue #24725")
2847 2848 def testFDPassEmpty(self):
2848 2849 # Try to pass an empty FD array. Can receive either no array
2849 2850 # or an empty array.