Commit c1c00095 authored by Tim Peters's avatar Tim Peters

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).
parent 7baead1c
......@@ -280,6 +280,7 @@ class RaceConditionBase(BerkeleyTestBase):
def tearDown(self):
# clean up any outstanding transactions
get_transaction().abort()
BerkeleyTestBase.tearDown(self)
def _getPackThread(self, storage):
raise NotImplementedError
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment