[Zope-Checkins] CVS: Zope/lib/python/ZODB/tests - MTStorage.py:1.4.4.3
Chris McDonough
chrism@zope.com
Tue, 8 Oct 2002 17:46:26 -0400
Update of /cvs-repository/Zope/lib/python/ZODB/tests
In directory cvs.zope.org:/tmp/cvs-serv17057/lib/python/ZODB/tests
Modified Files:
Tag: chrism-install-branch
MTStorage.py
Log Message:
More merges from HEAD.
=== Zope/lib/python/ZODB/tests/MTStorage.py 1.4.4.2 => 1.4.4.3 ===
--- Zope/lib/python/ZODB/tests/MTStorage.py:1.4.4.2 Tue Oct 8 14:41:14 2002
+++ Zope/lib/python/ZODB/tests/MTStorage.py Tue Oct 8 17:45:55 2002
@@ -170,9 +170,9 @@
for t in threads:
t.start()
for t in threads:
- t.join(10)
+ t.join(60)
for t in threads:
- self.failIf(t.isAlive())
+ self.failIf(t.isAlive(), "thread failed to finish in 60 seconds")
def check2ZODBThreads(self):
db = ZODB.DB(self._storage)