]> granicus.if.org Git - python/commitdiff
Issue #20736: testSendmsgDontWait in test_socket no longer skipped on Linux.
authorSerhiy Storchaka <storchaka@gmail.com>
Wed, 19 Nov 2014 11:21:13 +0000 (13:21 +0200)
committerSerhiy Storchaka <storchaka@gmail.com>
Wed, 19 Nov 2014 11:21:13 +0000 (13:21 +0200)
Patch by David Watson.

Lib/test/test_socket.py

index b0caa639ca72ab54a164c52c548a1378f05836f5..b412386c43928dfef62cb9db13ef89079b09aa27 100644 (file)
@@ -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):