diff options
author | Kristján Valur Jónsson <kristjan@ccpgames.com> | 2010-10-30 05:15:42 (GMT) |
---|---|---|
committer | Kristján Valur Jónsson <kristjan@ccpgames.com> | 2010-10-30 05:15:42 (GMT) |
commit | 6b6dffdc73848aa05045b50fe4102216622a286e (patch) | |
tree | 3f675fff3af72ef53352740e06757d1b5dadefcd /Lib/test/lock_tests.py | |
parent | 028011f9f098d37d9dc81df7737fc38126fbdc76 (diff) | |
download | cpython-6b6dffdc73848aa05045b50fe4102216622a286e.zip cpython-6b6dffdc73848aa05045b50fe4102216622a286e.tar.gz cpython-6b6dffdc73848aa05045b50fe4102216622a286e.tar.bz2 |
issue 10237
Increase the default timout of the barries used in the barrier tests. This should solve unexpected timeouts on some machines.
Diffstat (limited to 'Lib/test/lock_tests.py')
-rw-r--r-- | Lib/test/lock_tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/lock_tests.py b/Lib/test/lock_tests.py index f256a80..9fd0fe7 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() |