diff options
author | Gregory P. Smith <greg@mad-scientist.com> | 2007-08-28 08:05:56 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@mad-scientist.com> | 2007-08-28 08:05:56 (GMT) |
commit | 3fd22da6129040fdea850bf593e63fc8c333304b (patch) | |
tree | c7ce98ab685a138c745048f0314c9007b9d99996 /Lib/test/test_bsddb3.py | |
parent | a280ca759492360fd7440476f513fa9726d22bff (diff) | |
download | cpython-3fd22da6129040fdea850bf593e63fc8c333304b.zip cpython-3fd22da6129040fdea850bf593e63fc8c333304b.tar.gz cpython-3fd22da6129040fdea850bf593e63fc8c333304b.tar.bz2 |
some test suite cleanup, use tempfile.mkdtemp() in setUp and
shutil.rmtree() in tearDown(). add missing tests to the list
in the test_bsddb3 suite.
Diffstat (limited to 'Lib/test/test_bsddb3.py')
-rw-r--r-- | Lib/test/test_bsddb3.py | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/Lib/test/test_bsddb3.py b/Lib/test/test_bsddb3.py index fe0469c..15ed1e4 100644 --- a/Lib/test/test_bsddb3.py +++ b/Lib/test/test_bsddb3.py @@ -4,20 +4,21 @@ Run all test cases. """ import sys import unittest -from test.test_support import requires, verbose, run_unittest, unlink +import test.test_support +from test.test_support import requires, run_unittest, unlink # When running as a script instead of within the regrtest framework, skip the # requires test, since it's obvious we want to run them. if __name__ != '__main__': requires('bsddb') -verbose = False +import bsddb.test.test_all if 'verbose' in sys.argv: - verbose = True + bsddb.test.test_all.verbose = 1 sys.argv.remove('verbose') if 'silent' in sys.argv: # take care of old flag, just in case - verbose = False + bsddb.test.test_all.verbose = 0 sys.argv.remove('silent') @@ -25,14 +26,15 @@ 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']: + finally: + for f in ['xxx.db','__db.001','__db.002','__db.003','log.0000000001']: unlink(f) test_modules = [ 'test_associate', 'test_basics', 'test_compat', + 'test_compare', 'test_dbobj', 'test_dbshelve', 'test_dbtables', @@ -41,6 +43,7 @@ def suite(): 'test_join', 'test_lock', 'test_misc', + 'test_pickle', 'test_queue', 'test_recno', 'test_thread', |