Example 'make check'

This commit is contained in:
Ruben Laguna
2015-02-06 17:10:11 +01:00
parent 507e3c4213
commit 0a60c39c32
4 changed files with 31 additions and 4 deletions

10
tests/test.c Normal file
View File

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