Commit bc07ab4e authored by Denis Bilenko's avatar Denis Bilenko

Update known_failures.py

parent 932dcdad
......@@ -18,10 +18,14 @@ FAILING_TESTS = [
# seems to be Python/OpenSSL problem, not gevent's
'monkey_test --Event test_ssl.py',
'monkey_test test_ssl.py',
# Sometimes fails with AssertionError: ...\nIOError: close() called during concurrent operation on the same file object.\n'
# Sometimes it contains "\nUnhandled exception in thread started by \nsys.excepthook is missing\nlost sys.stderr\n"
"FLAKY test__subprocess_interrupted.py",
]
if os.environ.get('GEVENT_RESOLVER') == 'ares':
if os.environ.get('GEVENT_RESOLVER') == 'ares' or CPYTHON_DBG:
# XXX fix this
FAILING_TESTS += [
'FLAKY test__socket_dns.py',
......@@ -43,7 +47,7 @@ if sys.platform == 'win32':
if CPYTHON_DBG:
FAILING_TESTS += ['test__backdoor.py']
FAILING_TESTS += ['FLAKY test__backdoor.py']
if PYPY:
......@@ -76,29 +80,27 @@ if PYPY:
# No idea!
'test_threading_2.py',
'test_threading.py',
'test__example_portforwarder.py',
'test__pywsgi.py',
'test__backdoor.py',
'test__refcount.py',
'test__server.py',
'test_subprocess.py', # test_executable_without_cwd
'FLAKY test___example_servers.py'
]
if PY3:
# No idea / TODO
FAILING_TESTS += '''
test__threading_vs_settrace.py
test__example_udp_server.py
test_close_backend_fd.py
test__examples.py
test__pool.py
test___example_servers.py
FLAKY test___example_servers.py
test__example_udp_client.py
test__os.py
test__backdoor.py
test_threading_2.py
test_ares_timeout.py
test__refcount.py
test__socket.py
test__subprocess.py
......@@ -111,16 +113,23 @@ test__subprocess_poll.py
test__ssl.py
test__makefile_ref.py
test__socketpair.py
test_queue.py
test__server_pywsgi.py
test__core_stat.py
test__server.py
test__subprocess_interrupted.py
test__example_portforwarder.py
test__execmodules.py
test__greenio.py
FLAKY test__greenio.py
'''.strip().split()
if os.environ.get('GEVENT_RESOLVER') == 'ares':
FAILING_TESTS += [
'test__greenness.py']
if CPYTHON_DBG:
FAILING_TESTS += ['FLAKY test__threadpool.py']
else:
FAILING_TESTS += ['test_queue.py', 'test__threading_vs_settrace.py']
if __name__ == '__main__':
import pprint
......
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