Commit 841a9638 authored by Bradley C. Kuszmaul's avatar Bradley C. Kuszmaul

Don't run {{{test_txn_abort9.bdb}}} under BDB 4.3. Addresses #803.

git-svn-id: file:///svn/tokudb@3888 c7de825b-a66e-492c-adef-691d508d4ae1
parent 3e533b15
......@@ -10,6 +10,13 @@
//
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);
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