[Python-checkins] cpython: test_asyncio: relax timing, the "AMD64 Windows Server 2008 [SB] 3.x" buildbot

victor.stinner python-checkins at python.org
Sat Feb 1 04:11:28 CET 2014


http://hg.python.org/cpython/rev/0bee98291117
changeset:   88879:0bee98291117
user:        Victor Stinner <victor.stinner at gmail.com>
date:        Sat Feb 01 04:11:16 2014 +0100
summary:
  test_asyncio: relax timing, the "AMD64 Windows Server 2008 [SB] 3.x" buildbot
looks to be slow

files:
  Lib/test/test_asyncio/test_windows_events.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Lib/test/test_asyncio/test_windows_events.py b/Lib/test/test_asyncio/test_windows_events.py
--- a/Lib/test/test_asyncio/test_windows_events.py
+++ b/Lib/test/test_asyncio/test_windows_events.py
@@ -105,7 +105,7 @@
         self.loop.run_until_complete(f)
         elapsed = self.loop.time() - start
         self.assertFalse(f.result())
-        self.assertTrue(0.18 < elapsed < 0.5, elapsed)
+        self.assertTrue(0.18 < elapsed < 0.9, elapsed)
 
         _overlapped.SetEvent(event)
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list