[Python-checkins] cpython (3.4): Issue #20736: testSendmsgDontWait in test_socket no longer skipped on Linux.

serhiy.storchaka python-checkins at python.org
Wed Nov 19 12:24:41 CET 2014


https://hg.python.org/cpython/rev/fb06c8ccfd41
changeset:   93512:fb06c8ccfd41
branch:      3.4
parent:      93510:34c7be03259b
user:        Serhiy Storchaka <storchaka at gmail.com>
date:        Wed Nov 19 13:21:13 2014 +0200
summary:
  Issue #20736: testSendmsgDontWait in test_socket no longer skipped on Linux.
Patch by David Watson.

files:
  Lib/test/test_socket.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Lib/test/test_socket.py b/Lib/test/test_socket.py
--- a/Lib/test/test_socket.py
+++ b/Lib/test/test_socket.py
@@ -2216,7 +2216,7 @@
     # 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):

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list