test-autotools-shared/tests/test.c

12 lines
208 B
C
Raw Normal View History

2015-02-06 17:10:11 +01:00
#include <glib.h>
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char *argv[])
{
g_test_init(&argc, &argv, NULL);
2015-02-06 17:10:11 +01:00
printf("Write some tests!!! Failing!\n");
exit(EXIT_FAILURE);
return 0;
}