18 lines
329 B
C
18 lines
329 B
C
|
|
||
|
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;
|
||
|
}
|
||
|
|