mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
bpo-31904: Skip some asyncio tests on VxWorks (#23815)
This commit is contained in:
parent
dcc997cd28
commit
ba760f3710
3 changed files with 11 additions and 1 deletions
|
@ -1745,6 +1745,8 @@ class BaseEventLoopWithSelectorTests(test_utils.TestCase):
|
|||
MyDatagramProto, allow_broadcast=True, sock=FakeSock())
|
||||
self.assertRaises(ValueError, self.loop.run_until_complete, fut)
|
||||
|
||||
@unittest.skipIf(sys.platform == 'vxworks',
|
||||
"SO_BROADCAST is enabled by default on VxWorks")
|
||||
def test_create_datagram_endpoint_sockopts(self):
|
||||
# Socket options should not be applied unless asked for.
|
||||
# SO_REUSEPORT is not available on all platforms.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue