bpo-24725: Skip the test_socket.testFDPassEmpty on OS X (#1427) · python/cpython@5e9c110 (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 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. |