]> pd.if.org Git - pdclib/blob - testing/_PDCLIB_test.h
Cleaned up the testing a bit.
[pdclib] / testing / _PDCLIB_test.h
1 /* $Id$ */
2
3 /* PDCLib testing suite <_PDCLIB_test.h>
4
5    This file is part of the Public Domain C Library (PDCLib).
6    Permission is granted to use, modify, and / or redistribute at will.
7 */
8
9 /* -------------------------------------------------------------------------- */
10 /* Helper macros for test drivers                                             */
11 /* -------------------------------------------------------------------------- */
12
13 #include <stdio.h>
14
15 static char const abcde[] = "abcde";
16 static char const abcdx[] = "abcdx";
17 static char const teststring[] = "1234567890\nABCDEFGHIJKLMNOPQRSTUVWXYZ\nabcdefghijklmnopqrstuvwxyz\n";
18 static char const testfile[]="testing/testfile";
19 static char const testfile1[]="testing/testfile1";
20 static char const testfile2[]="testing/testfile2";
21
22 #define NO_TESTDRIVER 0
23
24 static int TEST_RESULTS = 0;
25
26 #define TESTCASE( x ) if ( x ) {} \
27                       else { TEST_RESULTS += 1; printf( "FAILED: " __FILE__ ", line %d - %s\n", __LINE__, #x ); }
28
29 #ifndef REGTEST
30 #define TESTCASE_NOREG( x ) TESTCASE( x )
31 #else
32 #define TESTCASE_NOREG( x )
33 #endif