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
4e718c53
Commit
4e718c53
authored
Aug 29, 2011
by
Denis Bilenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
patched_tests_setup.py: put comma first so that it's harder to miss
parent
f9edd737
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
15 deletions
+15
-15
greentest/patched_tests_setup.py
greentest/patched_tests_setup.py
+15
-15
No files found.
greentest/patched_tests_setup.py
View file @
4e718c53
...
...
@@ -36,36 +36,36 @@ def get_switch_expected(fullname):
return True
disabled_tests = [
disabled_tests =
\
[ '
test_threading
.
ThreadTests
.
test_PyThreadState_SetAsyncExc
'
# uses some internal C API of threads not available when threads are emulated with greenlets
'
test_threading
.
ThreadTests
.
test_PyThreadState_SetAsyncExc
',
, '
test_urllib2net
.
TimeoutTest
.
test_ftp_no_timeout
'
, '
test_urllib2net
.
TimeoutTest
.
test_ftp_timeout
'
, '
test_urllib2net
.
TimeoutTest
.
test_http_no_timeout
'
, '
test_urllib2net
.
TimeoutTest
.
test_http_timeout
'
# access _sock.gettimeout() which is always in non-blocking mode
'
test_urllib2net
.
TimeoutTest
.
test_ftp_no_timeout
',
'
test_urllib2net
.
TimeoutTest
.
test_ftp_timeout
',
'
test_urllib2net
.
TimeoutTest
.
test_http_no_timeout
',
'
test_urllib2net
.
TimeoutTest
.
test_http_timeout
',
# this test seems to have a bug which makes it fail with error: (107, '
Transport
endpoint
is
not
connected
')
, '
test_socket
.
UDPTimeoutTest
.
testUDPTimeout
'
# has a bug which makes it fail with error: (107, '
Transport
endpoint
is
not
connected
')
# (it creates a TCP socket, not UDP)
'
test_socket
.
UDPTimeoutTest
.
testUDPTimeout
',
# this fails with "socket.getnameinfo loses a reference" while the reference is only "lost"
, '
test_socket
.
GeneralModuleTests
.
testRefCountGetNameInfo
'
# fails with "socket.getnameinfo loses a reference" while the reference is only "lost"
# because it is referenced by the traceback - any Python function would lose a reference like that.
# the original getnameinfo does not lose it because it'
s
in
C
.
'test_socket.GeneralModuleTests.testRefCountGetNameInfo'
,
,
'test_asyncore.BaseTestAPI.test_handle_expt'
# sends some OOB data and expect it to be detected as such; gevent.select.select does not support that
'test_asyncore.BaseTestAPI.test_handle_expt'
,
# this tests that time.sleep() returns prematurely in case of signal;
,
'test_signal.WakeupSignalTests.test_wakeup_fd_early'
# expects time.sleep() to return prematurely in case of a signal;
# gevent.sleep() is better than that and does not get interrupted (unless signal handler raises an error)
'test_signal.WakeupSignalTests.test_wakeup_fd_early'
,
# this tests that select.select() raises select.error(EINTR, 'interrupted system call')
,
'test_signal.WakeupSignalTests.test_wakeup_fd_during'
# expects select.select() to raise select.error(EINTR, 'interrupted system call')
# gevent.select.select() does not get interrupted (unless signal handler raises an error)
# maybe it should?
'test_signal.WakeupSignalTests.test_wakeup_fd_during'
,
]
if
sys
.
version_info
[:
2
]
<
(
2
,
7
):
...
...
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