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
e78004f7
Commit
e78004f7
authored
Jul 26, 2015
by
Denis Bilenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update known_failures.py on Windows (appveyor)
parent
860d5a58
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
29 additions
and
11 deletions
+29
-11
known_failures.py
known_failures.py
+29
-11
No files found.
known_failures.py
View file @
e78004f7
# This is a list of known failures (=bugs).
# The tests listed there must fail (or testrunner.py will report error) unless they are prefixed with FLAKY
# in which cases the result of them is simply ignored
from
__future__
import
print_function
import
os
import
sys
import
struct
LEAKTEST
=
os
.
getenv
(
'GEVENTTEST_LEAKCHECK'
)
...
...
@@ -44,12 +46,27 @@ if sys.platform == 'win32':
FAILING_TESTS
+=
[
'test__core_stat.py'
]
# other Windows-related issues (need investigating)
FAILING_TESTS
+=
[
'monkey_test test_threading.py'
,
'monkey_test --Event test_threading.py'
,
'monkey_test test_subprocess.py'
,
'monkey_test --Event test_subprocess.py'
]
FAILING_TESTS
+=
'''
test__all__.py
test__core_fork.py
test__issues461_471.py
test__execmodules.py
test__socketpair.py
test__makefile_ref.py
FLAKY test__greenletset.py
'''
.
split
(
'
\
n
'
)
if
struct
.
calcsize
(
'P'
)
*
8
==
64
:
# could be a problem of appveyor - not sure
# ======================================================================
# ERROR: test_af (__main__.TestIPv6Environment)
# ----------------------------------------------------------------------
# File "C:\Python27-x64\lib\ftplib.py", line 135, in connect
# self.sock = socket.create_connection((self.host, self.port), self.timeout)
# File "c:\projects\gevent\gevent\socket.py", line 73, in create_connection
# raise err
# error: [Errno 10049] [Error 10049] The requested address is not valid in its context.
FAILING_TESTS
.
append
(
'test_ftplib.py'
)
if
LEAKTEST
:
...
...
@@ -86,14 +103,14 @@ if PY3:
# No idea / TODO
FAILING_TESTS
+=
'''
FLAKY test__socket_dns.py
'''
.
s
trip
().
s
plit
(
'
\
n
'
)
'''
.
split
(
'
\
n
'
)
if
LEAKTEST
:
FAILING_TESTS
+=
[
'FLAKY test__threadpool.py'
]
# refcount problems:
FAILING_TESTS
+=
'''
test__timeout.py
test__greenletset.py
FLAKY
test__greenletset.py
test__core.py
test__systemerror.py
test__exc_info.py
...
...
@@ -106,9 +123,10 @@ FLAKY test__socket_dns.py
test__select.py
test__greenlet.py
FLAKY test__socket.py
'''
.
strip
().
split
()
'''
.
split
(
'
\
n
'
)
FAILING_TESTS
=
[
x
.
strip
()
for
x
in
FAILING_TESTS
if
x
.
strip
()]
if
__name__
==
'__main__'
:
import
pprint
pprint
.
pprint
(
FAILING_TESTS
)
print
(
'known_failures:
\
n
'
,
FAILING_TESTS
)
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