From: Serhiy Storchaka Date: Wed, 19 Nov 2014 11:21:13 +0000 (+0200) Subject: Issue #20736: testSendmsgDontWait in test_socket no longer skipped on Linux. X-Git-Tag: v3.5.0a1~471^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=abde2c1d2511367c6199d6bb21ec63cecb7ac6b8;p=python Issue #20736: testSendmsgDontWait in test_socket no longer skipped on Linux. Patch by David Watson. --- diff --git a/Lib/test/test_socket.py b/Lib/test/test_socket.py index b0caa639ca..b412386c43 100644 --- a/Lib/test/test_socket.py +++ b/Lib/test/test_socket.py @@ -2216,7 +2216,7 @@ class SendmsgStreamTests(SendmsgTests): # Linux supports MSG_DONTWAIT when sending, but in general, it # only works when receiving. Could add other platforms if they # support it too. - @skipWithClientIf(sys.platform not in {"linux2"}, + @skipWithClientIf(sys.platform not in {"linux"}, "MSG_DONTWAIT not known to work on this platform when " "sending") def testSendmsgDontWait(self):