From 39ecf2ed13f9500f6e69b1b5298f8f7b0f83d074 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Fri, 15 Nov 2013 07:41:10 -0800 Subject: asyncio: Longer timeout in Windows test_popen. Fixes issue 19598. --- Lib/test/test_asyncio/test_windows_utils.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Lib/test/test_asyncio/test_windows_utils.py b/Lib/test/test_asyncio/test_windows_utils.py index e013fbd..fa9d66c 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) -- cgit v0.12