c-libp2p/test/testit.c

18 lines
329 B
C
Raw Normal View History

2016-11-03 14:18:32 +00:00
int testit(const char* name, int (*func)(void)) {
printf("Testing %s...\n", name);
int retVal = func();
if (retVal)
printf("%s success!\n", name);
else
printf("** Uh oh! %s failed.**\n", name);
return retVal;
}
int main(int argc, char** argv) {
testit("test_repo_config_init", test_repo_config_init);
return 1;
}