diff options
author | Barry Warsaw <barry@python.org> | 2002-12-31 18:21:43 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2002-12-31 18:21:43 (GMT) |
commit | bc38baffbd9c94fc266c156a3e8a8b38918fc777 (patch) | |
tree | 9c99a6573095a73ac37664752f86a647e9f13d66 /Lib/bsddb | |
parent | 0aae2b07d7b42462a6d88e035cb3dfc8e8df06da (diff) | |
download | cpython-bc38baffbd9c94fc266c156a3e8a8b38918fc777.zip cpython-bc38baffbd9c94fc266c156a3e8a8b38918fc777.tar.gz cpython-bc38baffbd9c94fc266c156a3e8a8b38918fc777.tar.bz2 |
test01_close_dbenv_before_db(): Added an XXX comment that this test is
BerkeleyDB version dependent.
Diffstat (limited to 'Lib/bsddb')
-rw-r--r-- | Lib/bsddb/test/test_env_close.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/bsddb/test/test_env_close.py b/Lib/bsddb/test/test_env_close.py index 87ad97f..0b46ee3 100644 --- a/Lib/bsddb/test/test_env_close.py +++ b/Lib/bsddb/test/test_env_close.py @@ -61,6 +61,8 @@ class DBEnvClosedEarlyCrash(unittest.TestCase): "DB close did not raise an exception about its "\ "DBEnv being trashed" + # XXX This may fail when using older versions of BerkeleyDB. + # E.g. 3.2.9 never raised the exception. assert 0, "dbenv did not raise an exception about its DB being open" |