You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-03 00:45:53 +08:00
111 lines
3.6 KiB
Bash
111 lines
3.6 KiB
Bash
SKIP_TESTS=(
|
|
# FIXME: Did this work sometime in the past ?
|
|
# for elem in g(s):
|
|
# if not tgt and isOdd(elem): continue
|
|
# is erroneously:
|
|
# for elem in g(s):
|
|
# if tgt or isOdd(elem):
|
|
# pass
|
|
# else:
|
|
# tgt.append(elem)
|
|
[test_itertools.py]=1
|
|
|
|
[test_buffer.py]=1 # FIXME: Works on c90ff51
|
|
[test_cmath.py]=1 # FIXME: Works on c90ff51
|
|
[test_strftime.py]=1 # FIXME: Works on c90ff51
|
|
|
|
[test___all__.py]=1 # it fails on its own
|
|
[test_atexit.py]=1 # The atexit test looks for specific comments in error lines
|
|
|
|
[test_cmd_line.py]=1 # takes too long to run
|
|
[test_concurrent_futures.py]=1 # too long?
|
|
|
|
[test_configparser.py]=1 # Doesn't terminate
|
|
[test_ctypes.py]=1 # it fails on its own
|
|
[test_curses.py]=1 # Investigate
|
|
|
|
[test_dbm_gnu.py]=1 # fails on its own
|
|
[test_devpoll.py]=1 # it fails on its own
|
|
|
|
[test_descr.py]=1 # test assertion errors
|
|
# ERROR: test_reent_set_bases_on_base (__main__.MroTest)
|
|
# Traceback (most recent call last):
|
|
# File "test_descr.py", line 5521, in test_reent_set_bases_on_base
|
|
# class A(metaclass=M):
|
|
# File "test_descr.py", line 5472, in __new__
|
|
# return type.__new__(mcls, name, bases, attrs)
|
|
# TypeError: 'NoneType' object is not iterable
|
|
|
|
[test_dis.py]=1 # We change line numbers - duh!
|
|
[test_distutils.py]=1 # it fails on its own
|
|
[test_doctest2.py]=1
|
|
[test_doctest.py]=1 # test assert failures
|
|
[test_docxmlrpc.py]=1
|
|
|
|
[test_enum.py]=1 # compile syntax?
|
|
[test_exceptions.py]=1
|
|
|
|
[test_faulthandler.py]=1
|
|
[test_file_eintr.py]=1 # parse error
|
|
[test_fork1.py]=1 # too long
|
|
|
|
[test_gdb.py]=1 # it fails on its own
|
|
[test_grammar.py]=1 # parse error
|
|
|
|
[test_httplib.py]=1 # it fails on its own
|
|
|
|
[test_import.py]=1 # it fails on its own
|
|
[test_io.py]=1
|
|
[test_ioctl.py]=1 # it fails on its own
|
|
[test_inspect.py]=1 # Syntax error Investigate
|
|
|
|
[test_logging.py]=1 # Too long to run
|
|
[test_long.py]=1 # FIXME: Works on c90ff51
|
|
|
|
[test_modulefinder.py]=1 # test assertion error
|
|
[test_multiprocessing_fork.py]=1 # doesn't terminate
|
|
[test_multiprocessing_forkserver.py]=1 # doesn't terminate
|
|
[test_multiprocessing_main_handling.py]=1 # doesn't terminate
|
|
[test_multiprocessing_spawn.py]=1 # doesn't terminate
|
|
|
|
[test_nntplib.py]=1 # too long to run
|
|
|
|
[test_peepholer.py]=1 # control flow?
|
|
[test_pep352.py]=1 # test assert failures
|
|
[test_pickle.py]=1 # test assert failures
|
|
[test_pkgimport.py]=1 # long
|
|
[test_poll.py]=1 # Too long to run: 11 seconds
|
|
[test_pydoc.py]=1 # test assertion failures
|
|
|
|
[test_runpy.py]=1 # Too long:
|
|
|
|
[test_select.py]=1 # Too long: 11 seconds
|
|
[test_selectors.py]=1 # Too long: 11 seconds
|
|
[test_signal.py]=1 # Too long: 22 seconds
|
|
[test_sndhdr.py]=1
|
|
[test_socket.py]=1 # long 25 seconds
|
|
[test_socketserver.py]=1 # long 25 seconds
|
|
[test_subprocess.py]=1 # Too long
|
|
[test_symtable.py]=1 # Investigate bad output
|
|
[test_sys_settrace.py]=1 # test assert failures
|
|
|
|
[test_tcl.py]=1 # May be implementation specific. On POWER though it fails
|
|
[test_threading.py]=1 # Too long
|
|
[test_threadsignals.py]=1 # Too long to run: 12 seconds
|
|
[test_timeout.py]=1 # Too long to run: 19 seconds
|
|
[test_traceback.py]=1 # introspects on code
|
|
|
|
[test_urllib2net.py]=1 # Doesn't terminate
|
|
|
|
[test_zipfile64.py]=1
|
|
[test_zlib.py]=1
|
|
)
|
|
# 304 unit-test file in about 20 minutes
|
|
|
|
if (( batch )) ; then
|
|
# Fails in crontab environment?
|
|
# Figure out what's up here
|
|
SKIP_TESTS[test_exception_variations.py]=1
|
|
SKIP_TESTS[test_mailbox.py]=1 # Takes to long on POWER; over 15 secs
|
|
fi
|