Commit b71ce57e authored by Bradley C. Kuszmaul's avatar Bradley C. Kuszmaul

Don't run {{{test_txn_abort8.bdb}}} under BDB 4.3. Fixes #803.

git-svn-id: file:///svn/tokudb@3890 c7de825b-a66e-492c-adef-691d508d4ae1
parent 51e48d36
...@@ -10,6 +10,13 @@ ...@@ -10,6 +10,13 @@
// //
void test_abort_close(void) { void test_abort_close(void) {
#ifndef USE_TDB
#if DB_VERSION_MAJOR==4 && DB_VERSION_MINOR==3
fprintf(stderr, "%s does not work for BDB %d.%d. Not running\n", __FILE__, DB_VERSION_MAJOR, DB_VERSION_MINOR);
return;
#endif
#endif
system("rm -rf " ENVDIR); system("rm -rf " ENVDIR);
mkdir(ENVDIR, 0777); mkdir(ENVDIR, 0777);
......
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