mariadb/ft/tests/logcursor-print.cc
Leif Walsh 958c447641 closes #5206 merge c++ changes to mainline
git-svn-id: file:///svn/toku/tokudb@45903 c7de825b-a66e-492c-adef-691d508d4ae1
2013-04-17 00:00:59 -04:00

32 lines
1,000 B
C++

/* -*- mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
// vim: ft=cpp:expandtab:ts=8:sw=4:softtabstop=4:
#ident "$Id$"
#ident "Copyright (c) 2007-2012 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 "logcursor.h"
#define LOGDIR __SRCFILE__ ".dir"
int test_main(int argc, const char *argv[]) {
int r;
default_parse_args(argc, argv);
r = system("rm -rf " LOGDIR);
assert(r == 0);
r = toku_os_mkdir(LOGDIR, S_IRWXU);
assert(r == 0);
TOKULOGCURSOR lc;
r = toku_logcursor_create(&lc, LOGDIR);
assert(r == 0);
toku_logcursor_print(lc);
r = toku_logcursor_destroy(&lc);
assert(r == 0);
return 0;
}