Commit 55894dac authored by John Esmet's avatar John Esmet Committed by Yoni Fogel

this test was not running properly, for some reason...


git-svn-id: file:///svn/toku/tokudb@50207 c7de825b-a66e-492c-adef-691d508d4ae1
parent 576cc5f1
...@@ -109,7 +109,7 @@ unlock_and_maybe_close_db(struct db_bucket *bucket, ARG arg) { ...@@ -109,7 +109,7 @@ unlock_and_maybe_close_db(struct db_bucket *bucket, ARG arg) {
int k = ((unsigned) myrandom_r(arg->random_data)) % 100; int k = ((unsigned) myrandom_r(arg->random_data)) % 100;
// we should close with probability approximately p / 100 // we should close with probability approximately p / 100
assert(bucket->is_open); assert(bucket->is_open);
if (false && k <= p) { if (k <= p) {
DB *db = bucket->db; DB *db = bucket->db;
int r = db->close(db, 0); int r = db->close(db, 0);
CKERR(r); CKERR(r);
......
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