1 /* Prototypes for mandatory functions */
5 #define OK 0 /* All tests succeded */
6 #define FAIL 5 /* Some of the tests failed */
12 printf( "Test FAILED in %s, line %d.\n", __FILE__, __LINE__ ); \
18 printf( "Test passed in %s, line %d.\n", __FILE__, __LINE__ ); \
21 /* Only output when not passing */
22 #define TESTFALSE(x) \
25 printf( "Test FAILED in %s, line %d.\n", __FILE__, __LINE__ ); \