summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGregory P. Smith <greg@mad-scientist.com>2008-05-14 04:27:01 (GMT)
committerGregory P. Smith <greg@mad-scientist.com>2008-05-14 04:27:01 (GMT)
commitee365b9f928e483fb13275a8986a3802ec7e8d1d (patch)
tree2d0985434de44ca75349d64e028e7160b8f95bc1
parentea785fb0cf7c675b1118fe19070fa6abf4993cd0 (diff)
downloadcpython-ee365b9f928e483fb13275a8986a3802ec7e8d1d.zip
cpython-ee365b9f928e483fb13275a8986a3802ec7e8d1d.tar.gz
cpython-ee365b9f928e483fb13275a8986a3802ec7e8d1d.tar.bz2
Enable the updated Lib/bsddb/test suite to run.
-rw-r--r--Lib/test/test_bsddb3.py17
1 files changed, 7 insertions, 10 deletions
diff --git a/Lib/test/test_bsddb3.py b/Lib/test/test_bsddb3.py
index 27a0900..a4d2294 100644
--- a/Lib/test/test_bsddb3.py
+++ b/Lib/test/test_bsddb3.py
@@ -49,30 +49,27 @@ class TimingCheck(unittest.TestCase):
def suite():
- try:
- # this is special, it used to segfault the interpreter
- import bsddb.test.test_1413192
- except:
- for f in ['__db.001', '__db.002', '__db.003', 'log.0000000001']:
- unlink(f)
-
test_modules = [
'test_associate',
'test_basics',
+ 'test_compare',
'test_compat',
+ 'test_cursor_pget_bug',
'test_dbobj',
'test_dbshelve',
'test_dbtables',
- 'test_env_close',
+ 'test_distributed_transactions',
+ 'test_early_close',
'test_get_none',
'test_join',
'test_lock',
'test_misc',
+ 'test_pickle',
'test_queue',
'test_recno',
- 'test_thread',
+ 'test_replication',
'test_sequence',
- 'test_cursor_pget_bug',
+ 'test_thread',
]
alltests = unittest.TestSuite()