mariadb/ft/tests/logcursor-fw.c
Yoni Fogel 3a208cebc4 closes [t:4913]. Modelines now synchronized in every source/header file (and always top two lines)
git-svn-id: file:///svn/toku/tokudb@43762 c7de825b-a66e-492c-adef-691d508d4ae1
2013-04-17 00:00:36 -04:00

38 lines
819 B
C

/* -*- mode: C; c-basic-offset: 4; indent-tabs-mode: nil -*- */
// vim: expandtab:ts=8:sw=4:softtabstop=4:
#ident "$Id$"
#ident "Copyright (c) 2007, 2008 Tokutek Inc. All rights reserved."
#include "test.h"
#include "includes.h"
// walk forward through the log files found in the current directory
int
test_main (int argc, const char *argv[]) {
default_parse_args(argc, argv);
int r;
// verify the log backwards
TOKULOGCURSOR lc = NULL;
r = toku_logcursor_create(&lc, ".");
assert(r == 0 && lc != NULL);
int n = 0;
while (1) {
struct log_entry *le = NULL;
r = toku_logcursor_next(lc, &le);
if (r != 0)
break;
n++;
}
printf("n=%d\n", n);
r = toku_logcursor_destroy(&lc);
assert(r == 0 && lc == NULL);
return 0;
}