From: Guido van Rossum Date: Fri, 15 Nov 2013 15:41:10 +0000 (-0800) Subject: asyncio: Longer timeout in Windows test_popen. Fixes issue 19598. X-Git-Tag: v3.4.0b1~269 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=39ecf2ed13f9500f6e69b1b5298f8f7b0f83d074;p=thirdparty%2FPython%2Fcpython.git asyncio: Longer timeout in Windows test_popen. Fixes issue 19598. --- diff --git a/Lib/test/test_asyncio/test_windows_utils.py b/Lib/test/test_asyncio/test_windows_utils.py index e013fbdde185..fa9d66c0217d 100644 --- a/Lib/test/test_asyncio/test_windows_utils.py +++ b/Lib/test/test_asyncio/test_windows_utils.py @@ -119,7 +119,8 @@ class PopenTests(unittest.TestCase): overr.ReadFile(p.stderr.handle, 100) events = [ovin.event, ovout.event, overr.event] - res = _winapi.WaitForMultipleObjects(events, True, 2000) + # Super-long timeout for slow buildbots. + res = _winapi.WaitForMultipleObjects(events, True, 10000) self.assertEqual(res, _winapi.WAIT_OBJECT_0) self.assertFalse(ovout.pending) self.assertFalse(overr.pending)