mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 23:04:20 +01:00
3719bf2c2f
git-svn-id: file:///svn/toku/tokudb@43686 c7de825b-a66e-492c-adef-691d508d4ae1
17 lines
348 B
C
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;
|
|
}
|