]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-30317: Fix multiprocessing test_timeout() (GH-8621)
authorVictor Stinner <vstinner@redhat.com>
Fri, 3 Aug 2018 00:09:00 +0000 (02:09 +0200)
committerPablo Galindo <Pablogsal@gmail.com>
Fri, 3 Aug 2018 00:09:00 +0000 (01:09 +0100)
Multiprocessing test_timeout() now accepts a delta of 100 ms instead
of just 50 ms, since the test failed with 135.8 ms instead of the
expected 200 ms.

Lib/test/_test_multiprocessing.py

index f446ef34fe67b154214e9bfaa8aa6779d752cdd0..749cf8c4fd2c49c9db356d516ecd7318b11b91fb 100644 (file)
@@ -1039,9 +1039,10 @@ class _TestQueue(BaseTestCase):
         start = time.time()
         self.assertRaises(pyqueue.Empty, q.get, True, 0.200)
         delta = time.time() - start
-        # Tolerate a delta of 50 ms because of the bad clock resolution on
-        # Windows (usually 15.6 ms)
-        self.assertGreaterEqual(delta, 0.150)
+        # bpo-30317: Tolerate a delta of 100 ms because of the bad clock
+        # resolution on Windows (usually 15.6 ms). x86 Windows7 3.x once
+        # failed because the delta was only 135.8 ms.
+        self.assertGreaterEqual(delta, 0.100)
         close_queue(q)
 
     def test_queue_feeder_donot_stop_onexc(self):