Commit 429eff52 authored by Dave Wells's avatar Dave Wells Committed by Yoni Fogel

update

git-svn-id: file:///svn/toku/tokudb@13862 c7de825b-a66e-492c-adef-691d508d4ae1
parent a9a5abe3
......@@ -5,7 +5,17 @@
#include "brttypes.h"
#include "includes.h"
int test_0 ();
int test_main(int argc __attribute__((unused)), const char *argv[] __attribute__((unused))) {
int r = 0;
r = test_0();
return r
}
int test_0 () {
int r=0;
char dbdir[100] = "./dir.test_logcursor.tdb";
struct toku_logcursor *cursor;
......@@ -42,3 +52,4 @@ int test_main(int argc __attribute__((unused)), const char *argv[] __attribute__
return 0;
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment