[Zope-Checkins] CVS: Zope/lib/python/BDBStorage/tests - test_autopack.py:1.11

Tim Peters tim.one@comcast.net
Fri, 23 May 2003 17:25:04 -0400


Update of /cvs-repository/Zope/lib/python/BDBStorage/tests
In directory cvs.zope.org:/tmp/cvs-serv11979/lib/python/BDBStorage/tests

Modified Files:
	test_autopack.py 
Log Message:
RaceConditionBase.tearDown():  this neglected to call the base class's
tearDown().  One result is that all tests here except the first died
on Windows with a winlock.error; this is probably unique to lock semantics
on Windows, and doesn't show up at all unless you've installed a modern
Berkeley DB on Windows (unless you do that, these tests don't even try
to run on Windows).


=== Zope/lib/python/BDBStorage/tests/test_autopack.py 1.10 => 1.11 ===
--- Zope/lib/python/BDBStorage/tests/test_autopack.py:1.10	Thu Jan 30 15:49:58 2003
+++ Zope/lib/python/BDBStorage/tests/test_autopack.py	Fri May 23 17:25:04 2003
@@ -280,6 +280,7 @@
     def tearDown(self):
         # clean up any outstanding transactions
         get_transaction().abort()
+        BerkeleyTestBase.tearDown(self)
 
     def _getPackThread(self, storage):
         raise NotImplementedError