/* -*- mode: C; c-basic-offset: 4 -*- */ #ident "$Id$" #ident "Copyright (c) 2010 Tokutek Inc. All rights reserved." #ident "The technology is licensed by the Massachusetts Institute of Technology, Rutgers State University of New Jersey, and the Research Foundation of State University of New York at Stony Brook under United States of America Serial No. 11/760379 and to the patents and/or patent applications resulting from it." #include "test.h" #include "includes.h" #include "toku_os.h" #include "checkpoint.h" #define TESTDIR "dir." __FILE__ #define FILENAME "test0.brt" static void do_yield (voidfp f, void *fv, void *UU(v)) { if (f) f(fv); } static void test_it (int N) { BRT brt; int r; system("rm -rf " TESTDIR); r = toku_os_mkdir(TESTDIR, S_IRWXU); CKERR(r); TOKULOGGER logger; r = toku_logger_create(&logger); CKERR(r); r = toku_logger_open(TESTDIR, logger); CKERR(r); CACHETABLE ct; r = toku_brt_create_cachetable(&ct, 0, ZERO_LSN, logger); CKERR(r); toku_cachetable_set_env_dir(ct, TESTDIR); toku_logger_set_cachetable(logger, ct); r = toku_logger_open_rollback(logger, ct, TRUE); CKERR(r); TOKUTXN txn; r = toku_txn_begin_txn((TOKUTXN)0, &txn, logger, TXN_SNAPSHOT_ROOT); CKERR(r); r = toku_open_brt(FILENAME, 1, &brt, 1024, ct, txn, toku_builtin_compare_fun, NULL); CKERR(r); r = toku_txn_commit_txn(txn, FALSE, do_yield, NULL, NULL, NULL); CKERR(r); toku_txn_close_txn(txn); r = toku_checkpoint(ct, logger, NULL, NULL, NULL, NULL); CKERR(r); r = toku_close_brt(brt, NULL); CKERR(r); unsigned int rands[N]; for (int i=0; i