Commit 3ae57fef authored by Rich Prohaska's avatar Rich Prohaska Committed by Yoni Fogel

#4269 test_blobs_leaf_split now works refs[t:4269]

git-svn-id: file:///svn/toku/tokudb@38462 c7de825b-a66e-492c-adef-691d508d4ae1
parent 21fa21a5
......@@ -393,7 +393,6 @@ BDB_BINS = $(patsubst %.c,%.bdb$(BINSUF),$(filter-out $(patsubst %,%.c,$(BDB_DON
endif
TDB_TESTS_THAT_SHOULD_FAIL= \
test_blobs_leaf_split \
test_truncate_txn_abort \
test_db_no_env \
#\ ends prev line
......
......@@ -92,6 +92,8 @@ int test_main(int argc, char * const argv[]) {
r = db->open(db, create_txn, db_filename, NULL, DB_BTREE, DB_CREATE, S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH); assert_zero(r);
insert(db, create_txn, 1, 8000000);
insert(db, create_txn, 1, 16000000);
insert(db, create_txn, 1, 32000000);
insert(db, create_txn, 2, 1);
if (do_txn) {
......
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