Issue #11871: In test_threading.BarrierTests, bump the default barrier timeout

to avoid timing-dependent failures.
This commit is contained in:
Charles-François Natali 2011-07-27 21:26:42 +02:00
parent 27c4e88552
commit d4d1d068dc
1 changed files with 3 additions and 3 deletions

View File

@ -832,12 +832,12 @@ class BarrierTests(BaseTestCase):
"""
Test the barrier's default timeout
"""
#create a barrier with a low default timeout
barrier = self.barriertype(self.N, timeout=0.1)
# create a barrier with a low default timeout
barrier = self.barriertype(self.N, timeout=0.3)
def f():
i = barrier.wait()
if i == self.N // 2:
# One thread is later than the default timeout of 0.1s.
# One thread is later than the default timeout of 0.3s.
time.sleep(1.0)
self.assertRaises(threading.BrokenBarrierError, barrier.wait)
self.run_threads(f)