diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2014-11-19 11:21:40 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2014-11-19 11:21:40 (GMT) |
commit | 66fb349d6ca325f54f2f89986146ddb8f3bcbef4 (patch) | |
tree | b0ef2e888bfc71e7bf082fb0d2724e37c6cee6e4 | |
parent | a9568bb44a8f955a1194a91de31dc29e0e4fe7c8 (diff) | |
parent | abde2c1d2511367c6199d6bb21ec63cecb7ac6b8 (diff) | |
download | cpython-66fb349d6ca325f54f2f89986146ddb8f3bcbef4.zip cpython-66fb349d6ca325f54f2f89986146ddb8f3bcbef4.tar.gz cpython-66fb349d6ca325f54f2f89986146ddb8f3bcbef4.tar.bz2 |
Issue #20736: testSendmsgDontWait in test_socket no longer skipped on Linux.
Patch by David Watson.
-rw-r--r-- | 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 index 563bc8d..9cd9dad 100644 --- a/Lib/test/test_socket.py +++ b/Lib/test/test_socket.py @@ -2221,7 +2221,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): |