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
090cae8c
Commit
090cae8c
authored
Mar 15, 2011
by
Denis Bilenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tests: run monkey patched test_signal.py
parent
a0a1af05
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
1 deletion
+13
-1
greentest/patched_tests_setup.py
greentest/patched_tests_setup.py
+11
-1
greentest/test_patched_signal.py
greentest/test_patched_signal.py
+2
-0
No files found.
greentest/patched_tests_setup.py
View file @
090cae8c
...
...
@@ -48,7 +48,17 @@ disabled_tests = [
# this test seems to have a bug which makes it fail with error: (107, '
Transport
endpoint
is
not
connected
')
# (they create TCP socket, not UDP)
'
test_socket
.
UDPTimeoutTest
.
testUDPTimeout
']
'
test_socket
.
UDPTimeoutTest
.
testUDPTimeout
',
# this tests that time.sleep() returns prematurely in case of 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
')
# 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):
# On Python 2.6, this test fails even without monkey patching
...
...
greentest/test_patched_signal.py
0 → 100644
View file @
090cae8c
import
helper
exec
helper
.
prepare_stdlib_test
(
__file__
)
in
globals
()
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