commit | 62a21121b4acf9b37ea62e64498a869048fefb5b | [log] [tgz] |
---|---|---|
author | Neal Norwitz <nnorwitz@gmail.com> | Wed Jan 25 05:21:55 2006 +0000 |
committer | Neal Norwitz <nnorwitz@gmail.com> | Wed Jan 25 05:21:55 2006 +0000 |
tree | 282bdbc5fc5c4f9edc9f94a0c0288dd3764aa7a0 | |
parent | 2a4712dc80bcc873bea2238fcc855c9b92b82095 [diff] |
Fix bug #1413192, fix seg fault in bsddb if a txn was deleted before the env. Will backport.
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 @@ 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',