summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-11-19 13:21:13 +0200
committerSerhiy Storchaka <storchaka@gmail.com>2014-11-19 13:21:13 +0200
commitabde2c1d2511367c6199d6bb21ec63cecb7ac6b8 (patch)
tree04060a758bd1f8287fcf1c45fa185c9d40c4cae2
parentfca2fc090c8227e8693a2b53dcdafd80bef06c1f (diff)
downloadcpython-git-abde2c1d2511367c6199d6bb21ec63cecb7ac6b8.tar.gz
Issue #20736: testSendmsgDontWait in test_socket no longer skipped on Linux.
Patch by David Watson.
-rw-r--r--Lib/test/test_socket.py2
1 files changed, 1 insertions, 1 deletions
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):