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