File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -3516,7 +3516,7 @@ def _testSendmsgTimeout(self):
35163516 # Linux supports MSG_DONTWAIT when sending, but in general, it
35173517 # only works when receiving. Could add other platforms if they
35183518 # support it too.
3519- @skipWithClientIf (sys .platform not in {"linux" , "android" },
3519+ @skipWithClientIf (sys .platform not in {"linux" , "android" , "freebsd" },
35203520 "MSG_DONTWAIT not known to work on this platform when "
35213521 "sending" )
35223522 def testSendmsgDontWait (self ):
@@ -7431,6 +7431,9 @@ def test_recv_fds_peek(self):
74317431 self ._test_pipe (fds [0 ], wfd , MSG )
74327432
74337433 @requireAttrs (socket , "MSG_DONTWAIT" )
7434+ @unittest .skipIf (sys .platform in ("darwin" ,),
7435+ "MSG_DONTWAIT not known to work on this platform when "
7436+ "sending" )
74347437 def test_send_fds_dontwait (self ):
74357438 rfd , wfd = os .pipe ()
74367439 self .addCleanup (os .close , rfd )
You can’t perform that action at this time.
0 commit comments