mariadb/newbrt/tests/logfilemgr-print.c
Leif Walsh d58b1a3331 [t:4871] really turn on -Werror, make things compile with it
git-svn-id: file:///svn/toku/tokudb@43473 c7de825b-a66e-492c-adef-691d508d4ae1
2013-04-17 00:00:29 -04:00

17 lines
348 B
C

#include "test.h"
#include "logfilemgr.h"
int test_main(int argc __attribute__((unused)), const char *argv[] __attribute__((unused))) {
int r;
TOKULOGFILEMGR lfm = NULL;
r = toku_logfilemgr_create(&lfm);
assert(r == 0);
toku_logfilemgr_print(lfm);
r = toku_logfilemgr_destroy(&lfm);
assert(r == 0);
return 0;
}