test-autotools-static/tests/test.c
Ruben Laguna 9e4435791e Fix the glib-2.0 DEPS
There is no product_LIBS is product_LDADD
2015-02-06 17:51:56 +01:00

12 lines
208 B
C

#include <glib.h>
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char *argv[])
{
g_test_init(&argc, &argv, NULL);
printf("Write some tests!!! Failing!\n");
exit(EXIT_FAILURE);
return 0;
}