Commit abde2c1d authored by Serhiy Storchaka's avatar Serhiy Storchaka

Issue #20736: testSendmsgDontWait in test_socket no longer skipped on Linux.

Patch by David Watson.
parent fca2fc09
......@@ -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):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment