[Python-checkins] r85964 - python/branches/py3k/Lib/test/lock_tests.py

kristjan.jonsson python-checkins at python.org
Sat Oct 30 07:15:42 CEST 2010


Author: kristjan.jonsson
Date: Sat Oct 30 07:15:42 2010
New Revision: 85964

Log:
issue 10237
Increase the default timout of the barries used in the barrier tests.  This should solve unexpected timeouts on some machines.

Modified:
   python/branches/py3k/Lib/test/lock_tests.py

Modified: python/branches/py3k/Lib/test/lock_tests.py
==============================================================================
--- python/branches/py3k/Lib/test/lock_tests.py	(original)
+++ python/branches/py3k/Lib/test/lock_tests.py	Sat Oct 30 07:15:42 2010
@@ -606,7 +606,7 @@
     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()
 


More information about the Python-checkins mailing list