Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gevent
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gevent
Commits
bc07ab4e
Commit
bc07ab4e
authored
Apr 28, 2014
by
Denis Bilenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update known_failures.py
parent
932dcdad
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
9 deletions
+18
-9
known_failures.py
known_failures.py
+18
-9
No files found.
known_failures.py
View file @
bc07ab4e
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment