polytreewm/tests/main.c

15 lines
214 B
C
Raw Normal View History

2021-12-04 18:42:03 +00:00
#include <stdio.h>
2021-12-04 18:54:02 +00:00
#include <stdlib.h>
2021-12-04 18:42:03 +00:00
2021-12-04 18:54:02 +00:00
void test();
2021-12-04 18:42:03 +00:00
void restart() {}
int main(int argc, char **argv)
{
2021-12-04 18:54:02 +00:00
test();
2021-12-04 18:42:03 +00:00
const char *const test_name = argv[0];
2021-12-04 18:54:02 +00:00
printf("[ OK ] %s\n", test_name);
exit(EXIT_SUCCESS);
2021-12-04 18:42:03 +00:00
}