Issue #24725: Skip the test_socket.testFDPassEmpty on OS X. · python/cpython@3c61a44 (original) (raw)
Navigation Menu
- GitHub Copilot Write better code with AI
- GitHub Models New Manage and compare prompts
- GitHub Advanced Security Find and fix vulnerabilities
- Actions Automate any workflow
- Codespaces Instant dev environments
- Issues Plan and track work
- Code Review Manage code changes
- Discussions Collaborate outside of code
- Code Search Find more, search less
- Explore
- Pricing
Provide feedback
Saved searches
Use saved searches to filter your results more quickly
Appearance settings
Commit 3c61a44
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.
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 |
---|---|---|
@@ -2809,6 +2809,7 @@ def sendAncillaryIfPossible(self, msg, ancdata): | ||
2809 | 2809 | nbytes = self.sendmsgToServer([msg]) |
2810 | 2810 | self.assertEqual(nbytes, len(msg)) |
2811 | 2811 | |
2812 | +@unittest.skipIf(sys.platform == "darwin", "skipping, see issue #24725") | |
2812 | 2813 | def testFDPassEmpty(self): |
2813 | 2814 | # Try to pass an empty FD array. Can receive either no array |
2814 | 2815 | # or an empty array. |