mariadb/newbrt/tests/test_toku_malloc_plain_free.c
Yoni Fogel 908ba5ecf4 Addresses #1338
All newbrt tests now call toku_brt_init/destroy

git-svn-id: file:///svn/toku/tokudb.1032b@8393 c7de825b-a66e-492c-adef-691d508d4ae1
2013-04-16 23:57:32 -04:00

13 lines
209 B
C

#include "memory.h"
#include "stdlib.h"
#include "test.h"
int
test_main (int argc, const char *argv[]) {
default_parse_args(argc, argv);
char *m=toku_malloc(5);
m=m;
free(m);
return 0;
}