Merged revisions 68897 via svnmerge from

svn+ssh://pythondev@svn.python.org/python/trunk

........
  r68897 | mark.dickinson | 2009-01-24 16:17:27 +0000 (Sat, 24 Jan 2009) | 2 lines

  Issue #5025: Fix occasional test_kqueue failure on OS X.
........
This commit is contained in:
Mark Dickinson 2009-01-24 16:22:21 +00:00
parent acbf461fe5
commit 3dfe55b6ff
1 changed files with 6 additions and 3 deletions

View File

@ -120,12 +120,15 @@ class TestKQueue(unittest.TestCase):
client.send(b"Hello!")
server.send(b"world!!!")
events = kq.control(None, 4, 1)
# We may need to call it several times
for i in range(5):
for i in range(10):
events = kq.control(None, 4, 1)
if len(events) == 4:
break
events = kq.control(None, 4, 1)
time.sleep(1.0)
else:
self.fail('timeout waiting for event notifications')
events = [(e.ident, e.filter, e.flags) for e in events]
events.sort()