mirror of https://github.com/python/cpython.git
test_multiprocessing: tolerate a delta of 30 ms because of bad clock resolution
on Windows
This commit is contained in:
parent
aef859c5ee
commit
aad7b2e4f5
|
@ -716,9 +716,11 @@ def test_task_done(self):
|
||||||
def test_timeout(self):
|
def test_timeout(self):
|
||||||
q = multiprocessing.Queue()
|
q = multiprocessing.Queue()
|
||||||
start = time.time()
|
start = time.time()
|
||||||
self.assertRaises(pyqueue.Empty, q.get, True, 0.2)
|
self.assertRaises(pyqueue.Empty, q.get, True, 0.200)
|
||||||
delta = time.time() - start
|
delta = time.time() - start
|
||||||
self.assertGreaterEqual(delta, 0.18)
|
# Tolerate a delta of 30 ms because of the bad clock resolution on
|
||||||
|
# Windows (usually 15.6 ms)
|
||||||
|
self.assertGreaterEqual(delta, 0.170)
|
||||||
|
|
||||||
#
|
#
|
||||||
#
|
#
|
||||||
|
|
Loading…
Reference in New Issue