[Python-checkins] cpython (3.5): Fix test_asyncio.test_timeout_disable()

victor.stinner python-checkins at python.org
Mon Apr 18 04:30:40 EDT 2016


https://hg.python.org/cpython/rev/730a95c2d38f
changeset:   101048:730a95c2d38f
branch:      3.5
parent:      101045:8054a68dfce2
user:        Victor Stinner <victor.stinner at gmail.com>
date:        Mon Apr 18 10:28:42 2016 +0200
summary:
  Fix test_asyncio.test_timeout_disable()

Issue #26777: Fix random failing of the test on the "AMD64 FreeBSD 9.x 3.5"
buildbot:

    File ".../Lib/test/test_asyncio/test_tasks.py", line 2398, in go
      self.assertTrue(0.09 < dt < 0.11, dt)
    AssertionError: False is not true : 0.11902812402695417

Replace "< 0.11" with "< 0.15".

files:
  Lib/test/test_asyncio/test_tasks.py |  4 +++-
  1 files changed, 3 insertions(+), 1 deletions(-)


diff --git a/Lib/test/test_asyncio/test_tasks.py b/Lib/test/test_asyncio/test_tasks.py
--- a/Lib/test/test_asyncio/test_tasks.py
+++ b/Lib/test/test_asyncio/test_tasks.py
@@ -2395,7 +2395,9 @@
                 resp = yield from long_running_task()
             self.assertEqual(resp, 'done')
             dt = self.loop.time() - t0
-            self.assertTrue(0.09 < dt < 0.11, dt)
+            # tolerate a time delta for clocks with bad resolution
+            # and slow buildbots
+            self.assertTrue(0.09 < dt < 0.15, dt)
         self.loop.run_until_complete(go())
 
     def test_raise_runtimeerror_if_no_task(self):

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


More information about the Python-checkins mailing list