]> pd.if.org Git - pdclib.old/blob - testing/_PDCLIB_test.h
[gandr] s/__lp64__/__LP64__/ to match GCC define
[pdclib.old] / 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 #include <limits.h>
15 #include <string.h>
16 #include <assert.h>
17 #include <wchar.h>
18
19 /* Some strings used for <string.h> and <stdlib.h> testing. */
20 static char const abcde[] = "abcde";
21 static char const abcdx[] = "abcdx";
22 static char const teststring[] = "1234567890\nABCDEFGHIJKLMNOPQRSTUVWXYZ\nabcdefghijklmnopqrstuvwxyz\n";
23
24 static wchar_t const wabcde[] = L"abcde";
25 static wchar_t const wabcdx[] = L"abcdx";
26 static wchar_t const wteststring[] = L"1234567890\nABCDEFGHIJKLMNOPQRSTUVWXYZ\nabcdefghijklmnopqrstuvwxyz\n";
27
28 /* Temporary file names */
29 static char const testfile[]="testing/testfile";
30 static char const testfile1[]="testing/testfile1";
31 static char const testfile2[]="testing/testfile2";
32
33 #define NO_TESTDRIVER 0
34
35 static int TEST_RESULTS = 0;
36
37 /* TESTCASE() - generic test */
38 #define TESTCASE( x ) if ( x ) {} \
39                       else { TEST_RESULTS += 1; printf( "FAILED: " __FILE__ ", line %d - %s\n", __LINE__, #x ); }
40
41 /* TESTCASE_NOREG() - PDCLib-only test */
42 #ifndef REGTEST
43     #define TESTCASE_NOREG( x ) TESTCASE( x )
44 #else
45     #define TESTCASE_NOREG( x )
46 #endif
47
48 /* Include printf() / scanf() test macros if required */
49
50 #if defined( _PDCLIB_FILEIO ) || defined( _PDCLIB_STRINGIO )
51 #include "_PDCLIB_iotest.h"
52 #endif
53