mariadb/newbrt/tests/test_toku_malloc_plain_free.c
Yoni Fogel 07bd330963 Addresses #1032, #1343
toku_portability.h is now the first header include for all newbrt test files

git-svn-id: file:///svn/toku/tokudb@8690 c7de825b-a66e-492c-adef-691d508d4ae1
2013-04-16 23:57:37 -04:00

14 lines
244 B
C

#include "toku_portability.h"
#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;
toku_free(m);
return 0;
}