@@ -95,6 +95,27 @@ def load_tests(loader, standard_tests, pattern):
9595 test .test_io .PyMiscIOTest ('test_pickling' ), # AssertionError: TypeError not raised by _dumps
9696 test .test_io .PyMiscIOTest ('test_warn_on_dealloc' ), # AssertionError: ResourceWarning not triggered
9797 test .test_io .PyMiscIOTest ('test_warn_on_dealloc_fd' ), # AssertionError: ResourceWarning not triggered
98+
99+ test .test_io .CMiscIOTest ('test_nonblock_pipe_write_bigbuf' ), # AttributeError: 'module' object has no attribute 'fcntl'
100+ test .test_io .CMiscIOTest ('test_nonblock_pipe_write_smallbuf' ), # AttributeError: 'module' object has no attribute 'fcntl'
101+ test .test_io .PyMiscIOTest ('test_nonblock_pipe_write_bigbuf' ), # AttributeError: 'module' object has no attribute 'fcntl'
102+ test .test_io .PyMiscIOTest ('test_nonblock_pipe_write_smallbuf' ), # AttributeError: 'module' object has no attribute 'fcntl'
103+ test .test_io .CSignalsTest ('test_interrupted_read_retry_buffered' ), # AttributeError: 'module' object has no attribute 'SIGALRM'
104+ test .test_io .CSignalsTest ('test_interrupted_read_retry_text' ), # AttributeError: 'module' object has no attribute 'SIGALRM'
105+ test .test_io .CSignalsTest ('test_interrupted_write_buffered' ), # AttributeError: 'module' object has no attribute 'SIGALRM'
106+ test .test_io .CSignalsTest ('test_interrupted_write_retry_buffered' ), # AttributeError: 'module' object has no attribute 'SIGALRM'
107+ test .test_io .CSignalsTest ('test_interrupted_write_retry_text' ), # AttributeError: 'module' object has no attribute 'SIGALRM'
108+ test .test_io .CSignalsTest ('test_interrupted_write_text' ), # AttributeError: 'module' object has no attribute 'SIGALRM'
109+ test .test_io .CSignalsTest ('test_interrupted_write_unbuffered' ), # AttributeError: 'module' object has no attribute 'SIGALRM'
110+ test .test_io .CSignalsTest ('test_reentrant_write_buffered' ), # AttributeError: 'module' object has no attribute 'SIGALRM'
111+ test .test_io .CSignalsTest ('test_reentrant_write_text' ), # AttributeError: 'module' object has no attribute 'SIGALRM'
112+ test .test_io .PySignalsTest ('test_interrupted_read_retry_buffered' ), # AttributeError: 'module' object has no attribute 'SIGALRM'
113+ test .test_io .PySignalsTest ('test_interrupted_read_retry_text' ), # AttributeError: 'module' object has no attribute 'SIGALRM'
114+ test .test_io .PySignalsTest ('test_interrupted_write_buffered' ), # AttributeError: 'module' object has no attribute 'SIGALRM'
115+ test .test_io .PySignalsTest ('test_interrupted_write_retry_buffered' ), # AttributeError: 'module' object has no attribute 'SIGALRM'
116+ test .test_io .PySignalsTest ('test_interrupted_write_retry_text' ), # AttributeError: 'module' object has no attribute 'SIGALRM'
117+ test .test_io .PySignalsTest ('test_interrupted_write_text' ), # AttributeError: 'module' object has no attribute 'SIGALRM'
118+ test .test_io .PySignalsTest ('test_interrupted_write_unbuffered' ), # AttributeError: 'module' object has no attribute 'SIGALRM'
98119 ]
99120
100121 skip_tests = [
0 commit comments