Commit 05661b9a authored by Stefan Behnel's avatar Stefan Behnel

exclude some tests that are known to not work (or usually crash) in PyPy

parent b66ddbc5
......@@ -1953,7 +1953,10 @@ def runtests(options, cmd_args, coverage=None):
exclude_selectors.append(ShardExcludeSelector(options.shard_num, options.shard_count))
if not test_bugs:
exclude_selectors += [ FileListExcluder(os.path.join(ROOTDIR, "bugs.txt"), verbose=verbose_excludes) ]
exclude_selectors += [
FileListExcluder(os.path.join(ROOTDIR, bugs_file_name), verbose=verbose_excludes)
for bugs_file_name in ['bugs.txt'] + (['pypy_bugs.txt'] if IS_PYPY else [])
]
if sys.platform in ['win32', 'cygwin'] and sys.version_info < (2,6):
exclude_selectors += [ lambda x: x == "run.specialfloat" ]
......
# This file contains tests corresponding to unresolved bugs
# either in PyPy, PyPy's cpyext, or Cython under PyPy,
# which will be skipped in the normal testing run.
broken_exception
bufaccess
exarkun
memoryview
memslice
sequential_parallel
setjmp
special_methods_T561
yield_from_pep380
builtin_subtype_methods_cy3
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment