From abde2c1d2511367c6199d6bb21ec63cecb7ac6b8 Mon Sep 17 00:00:00 2001 From: Serhiy Storchaka Date: Wed, 19 Nov 2014 13:21:13 +0200 Subject: Issue #20736: testSendmsgDontWait in test_socket no longer skipped on Linux. Patch by David Watson. --- Lib/test/test_socket.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_socket.py b/Lib/test/test_socket.py index b0caa63..b412386 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): -- cgit v0.12