ctest/main.c
2016-01-07 22:36:21 +01:00

20 lines
399 B
C

#include <stdio.h>
#define CTEST_MAIN
// uncomment lines below to enable/disable features. See README.md for details
#define CTEST_SEGFAULT
//#define CTEST_NO_COLORS
//#define CTEST_COLOR_OK
#include "ctest.h"
int main(int argc, const char *argv[])
{
int result = ctest_main(argc, argv);
printf("\nNOTE: some tests will fail, just to show how ctest works! ;)\n");
return result;
}