diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2006-01-25 05:21:55 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2006-01-25 05:21:55 (GMT) |
commit | 62a21121b4acf9b37ea62e64498a869048fefb5b (patch) | |
tree | 282bdbc5fc5c4f9edc9f94a0c0288dd3764aa7a0 /Lib/test | |
parent | 2a4712dc80bcc873bea2238fcc855c9b92b82095 (diff) | |
download | cpython-62a21121b4acf9b37ea62e64498a869048fefb5b.zip cpython-62a21121b4acf9b37ea62e64498a869048fefb5b.tar.gz cpython-62a21121b4acf9b37ea62e64498a869048fefb5b.tar.bz2 |
Fix bug #1413192, fix seg fault in bsddb if a txn was deleted before the env.
Will backport.
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_bsddb3.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Lib/test/test_bsddb3.py b/Lib/test/test_bsddb3.py index cd6ccc6..34555ff 100644 --- a/Lib/test/test_bsddb3.py +++ b/Lib/test/test_bsddb3.py @@ -22,6 +22,12 @@ if 'silent' in sys.argv: # take care of old flag, just in case def suite(): + try: + # this is special, it used to segfault the interpreter + import bsddb.test.test_1413192 + except: + pass + test_modules = [ 'test_associate', 'test_basics', |