Commit 89cd7a1e authored by Denis Bilenko's avatar Denis Bilenko

ignore test_socket.GeneralModuleTests.testRefCountGetNameInfo

parent 47449245
......@@ -47,9 +47,14 @@ disabled_tests = [
'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')
# (they create TCP socket, not UDP)
# (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"
# 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',
# 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',
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment