Commit 722f833d authored by Jason Madden's avatar Jason Madden

Disable a selectors test because libev limits the number of events it returns...

Disable a selectors test because libev limits the number of events it returns any given trip around the loop.
parent e186d671
......@@ -233,6 +233,12 @@ if sys.version_info[:2] >= (3, 4):
'test_subprocess.POSIXProcessTestCase.test_small_errpipe_write_fd',
# Python 3 fixed a bug if the stdio file descriptors were closed;
# we still have that bug
'test_selectors.PollSelectorTestCase.test_above_fd_setsize',
# This test attempts to open many many file descriptors and
# poll on them, expecting them all to be ready at once. But
# libev limits the number of events it will return at once. Specifically,
# on linux with epoll, it returns a max of 64 (ev_epoll.c).
]
if os.environ.get('TRAVIS') == 'true':
......
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