blob: 9b7dfa2acff5ccac71220dc8aa611ae35a9b47b3 [file] [log] [blame] [raw]
#include "facil.h"
#include "fio_hashmap.h"
int main(void) {
#if DEBUG
fio_hash_test();
fiobj_test();
defer_test();
sock_libtest();
#else
fprintf(stderr, "DEBUG must be set to access tests.\n");
exit(-1);
#endif
return 0;
}