diff options
| author | Guido van Rossum <guido@dropbox.com> | 2013-11-15 07:41:10 -0800 |
|---|---|---|
| committer | Guido van Rossum <guido@dropbox.com> | 2013-11-15 07:41:10 -0800 |
| commit | 39ecf2ed13f9500f6e69b1b5298f8f7b0f83d074 (patch) | |
| tree | 82859594d2392bceef49875eb9dfd5092b3f0125 | |
| parent | 4e553e2e52f8b1f57942cd525ded48f61e0e0577 (diff) | |
| download | cpython-git-39ecf2ed13f9500f6e69b1b5298f8f7b0f83d074.tar.gz | |
asyncio: Longer timeout in Windows test_popen. Fixes issue 19598.
| -rw-r--r-- | Lib/test/test_asyncio/test_windows_utils.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/test/test_asyncio/test_windows_utils.py b/Lib/test/test_asyncio/test_windows_utils.py index e013fbdde1..fa9d66c021 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) |
