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
88e772ca
Commit
88e772ca
authored
Mar 03, 2018
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Disable the test that's crashing with SystemError:BytecodeCorrupted on PyPy.
parent
b7bda102
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
1 deletion
+16
-1
src/greentest/greentest/patched_tests_setup.py
src/greentest/greentest/patched_tests_setup.py
+6
-1
src/greentest/known_failures.py
src/greentest/known_failures.py
+10
-0
No files found.
src/greentest/greentest/patched_tests_setup.py
View file @
88e772ca
...
@@ -243,7 +243,12 @@ if LIBUV:
...
@@ -243,7 +243,12 @@ if LIBUV:
]
]
if
PYPY
:
if
PYPY
:
disabled_tests
+=
[
# This seems to crash the interpreter. I cannot reproduce
# on macOS or local Linux VM.
# See https://travis-ci.org/gevent/gevent/jobs/348661604#L709
'test_smtplib.TooLongLineTests.testLineTooLong'
,
]
if
ARES
:
if
ARES
:
disabled_tests
+=
[
disabled_tests
+=
[
...
...
src/greentest/known_failures.py
View file @
88e772ca
...
@@ -169,6 +169,16 @@ if PYPY:
...
@@ -169,6 +169,16 @@ if PYPY:
'FLAKY test__example_udp_client.py'
,
'FLAKY test__example_udp_client.py'
,
]
]
if
LIBUV
:
IGNORED_TESTS
+=
[
# This has started crashing with a SystemError.
# I cannot reproduce with the same version on macOS
# and I cannot reproduce with the same version in a Linux vm.
# Commenting out individual tests just moves the crash around.
# https://bitbucket.org/pypy/pypy/issues/2769/systemerror-unexpected-internal-exception
'test__pywsgi.py'
,
]
if
PY3
and
TRAVIS
:
if
PY3
and
TRAVIS
:
FAILING_TESTS
+=
[
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