Commit b5464776 authored by Rich Prohaska's avatar Rich Prohaska Committed by Yoni Fogel

#4429 fix test for bdb 5.3 refs[t:4429]

git-svn-id: file:///svn/toku/tokudb@39115 c7de825b-a66e-492c-adef-691d508d4ae1
parent 7cb7ee46
......@@ -48,7 +48,11 @@ test_main (int UU(argc), char UU(*const argv[])) {
assert(r==0);
r=env->close(env, 0);
#ifdef USE_BDB
#if DB_VERSION_MAJOR >= 5
assert(r==0);
#else
assert(r==ENOENT);
#endif
#else
assert(r==0);
#endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment