mirror of
https://github.com/python/cpython.git
synced 2025-11-01 18:51:43 +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
|
|
@ -22,7 +22,7 @@ import unittest
|
|||
from unittest import mock
|
||||
import weakref
|
||||
|
||||
if sys.platform != 'win32':
|
||||
if sys.platform not in ('win32', 'vxworks'):
|
||||
import tty
|
||||
|
||||
import asyncio
|
||||
|
|
@ -465,6 +465,8 @@ class EventLoopTestsMixin:
|
|||
self.assertFalse(self.loop.remove_signal_handler(signal.SIGINT))
|
||||
|
||||
@unittest.skipUnless(hasattr(signal, 'SIGALRM'), 'No SIGALRM')
|
||||
@unittest.skipUnless(hasattr(signal, 'setitimer'),
|
||||
'need signal.setitimer()')
|
||||
def test_signal_handling_while_selecting(self):
|
||||
# Test with a signal actually arriving during a select() call.
|
||||
caught = 0
|
||||
|
|
@ -482,6 +484,8 @@ class EventLoopTestsMixin:
|
|||
self.assertEqual(caught, 1)
|
||||
|
||||
@unittest.skipUnless(hasattr(signal, 'SIGALRM'), 'No SIGALRM')
|
||||
@unittest.skipUnless(hasattr(signal, 'setitimer'),
|
||||
'need signal.setitimer()')
|
||||
def test_signal_handling_args(self):
|
||||
some_args = (42,)
|
||||
caught = 0
|
||||
|
|
@ -1371,6 +1375,7 @@ class EventLoopTestsMixin:
|
|||
|
||||
@unittest.skipUnless(sys.platform != 'win32',
|
||||
"Don't support pipes for Windows")
|
||||
@unittest.skipUnless(hasattr(os, 'openpty'), 'need os.openpty()')
|
||||
def test_read_pty_output(self):
|
||||
proto = MyReadPipeProto(loop=self.loop)
|
||||
|
||||
|
|
@ -1468,6 +1473,7 @@ class EventLoopTestsMixin:
|
|||
|
||||
@unittest.skipUnless(sys.platform != 'win32',
|
||||
"Don't support pipes for Windows")
|
||||
@unittest.skipUnless(hasattr(os, 'openpty'), 'need os.openpty()')
|
||||
# select, poll and kqueue don't support character devices (PTY) on Mac OS X
|
||||
# older than 10.6 (Snow Leopard)
|
||||
@support.requires_mac_ver(10, 6)
|
||||
|
|
@ -1512,6 +1518,7 @@ class EventLoopTestsMixin:
|
|||
|
||||
@unittest.skipUnless(sys.platform != 'win32',
|
||||
"Don't support pipes for Windows")
|
||||
@unittest.skipUnless(hasattr(os, 'openpty'), 'need os.openpty()')
|
||||
# select, poll and kqueue don't support character devices (PTY) on Mac OS X
|
||||
# older than 10.6 (Snow Leopard)
|
||||
@support.requires_mac_ver(10, 6)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue