issue 10237

Increase the default timout of the barries used in the barrier tests.  This should solve unexpected timeouts on some machines.
parent e09ccd69
...@@ -606,7 +606,7 @@ class BarrierTests(BaseTestCase): ...@@ -606,7 +606,7 @@ class BarrierTests(BaseTestCase):
N = 5 N = 5
def setUp(self): def setUp(self):
self.barrier = self.barriertype(self.N, timeout=0.1) self.barrier = self.barriertype(self.N, timeout=0.5)
def tearDown(self): def tearDown(self):
self.barrier.abort() self.barrier.abort()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment