Commit aa244950 authored by Dave Wells's avatar Dave Wells Committed by Yoni Fogel

remove lsn checking now that checkpoints are enabled

git-svn-id: file:///svn/toku/tokudb@20200 c7de825b-a66e-492c-adef-691d508d4ae1
parent fe236125
......@@ -237,7 +237,6 @@ static void test_loader(DB **dbs)
r = loader->set_poll_function(loader, poll_function, expect_poll_void);
CKERR(r);
uint64_t before_puts = toku_test_get_latest_lsn(env);
// using loader->put, put values into DB
DBT key, val;
unsigned int k, v;
......@@ -250,8 +249,6 @@ static void test_loader(DB **dbs)
CKERR(r);
if ( CHECK_RESULTS || verbose) { if((i%10000) == 0){printf("."); fflush(stdout);} }
}
uint64_t after_puts = toku_test_get_latest_lsn(env);
assert(before_puts == after_puts);
if( CHECK_RESULTS || verbose ) {printf("\n"); fflush(stdout);}
poll_count=0;
......
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