1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
# This file contains tests corresponding to unresolved bugs,
# which will be skipped in the normal testing run.
setuptools_reimport
class_attribute_init_values_T18
unsignedbehaviour_T184
missing_baseclass_in_predecl_T262
cfunc_call_tuple_args_T408
generator_expressions_in_class
for_from_pyvar_loop_T601
temp_sideeffects_T654 # not really a bug, Cython warns about it
cimport_alias_subclass
# PEP-489 is currently disabled
run.mod__spec__
# CPython regression tests that don't current work:
pyregr.test_signal
pyregr.test_capi
pyregr.test_socket
pyregr.test_sys
pyregr.test_pep3131
pyregr.test_multiprocessing
pyregr.test_tempfile
pyregr.test_ioctl
# CPython regression tests with threading issues
pyregr.test_threadsignals
pyregr.test_threading
pyregr.test_threaded_import
pyregr.test_logging
# CPython regression tests that don't make sense
pyregr.test_gdb
pyregr.test_support
pyregr.test_peepholer
# the atexit test runs the registered atexit functions => module cleanup => crash
pyregr.test_atexit
# a settrace test bypasses a with statement and currently crashes
pyregr.test_sys_settrace
# tests for exception on infinite recursion - may crash with stack overflow when calling C function
pyregr.test_exceptions
# CPython regression tests that take too long
pyregr.test_subprocess
pyregr.test_zipfile64
pyregr.test_tuple
pyregr.test_urllib2net
pyregr.test_urllibnet
# Inlined generators
inlined_generator_expressions
# crash in C++ on i686 (possibly others?)
# See https://github.com/cython/cython/issues/5768
gil_in_var_initialization_tests
# Skipped in Debian
# https://github.com/cython/cython/issues/2308
numpy_memoryview
# https://github.com/cython/cython/issues/5926
test_fstring.TestCase.test_many_expressions
# https://github.com/cython/cython/issues/5927
test_unicode.UnicodeTest.test_raiseMemError
# https://github.com/cython/cython/issues/5928
cpp_stl_any
|