From 6b6dffdc73848aa05045b50fe4102216622a286e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristj=C3=A1n=20Valur=20J=C3=B3nsson?= Date: Sat, 30 Oct 2010 05:15:42 +0000 Subject: [PATCH] issue 10237 Increase the default timout of the barries used in the barrier tests. This should solve unexpected timeouts on some machines. --- Lib/test/lock_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/lock_tests.py b/Lib/test/lock_tests.py index f256a807fad..9fd0fe753df 100644 --- a/Lib/test/lock_tests.py +++ b/Lib/test/lock_tests.py @@ -606,7 +606,7 @@ class BarrierTests(BaseTestCase): N = 5 def setUp(self): - self.barrier = self.barriertype(self.N, timeout=0.1) + self.barrier = self.barriertype(self.N, timeout=0.5) def tearDown(self): self.barrier.abort()