X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=testing%2F_PDCLIB_test.h;h=f380e61d5515402373d99244b6b72fb81134c72e;hb=c66f50d5348b47287f498184a3c2033bfa8d0576;hp=ad02b0fb71839924851a9f00f5ec30e5a63f7091;hpb=809bf566c6c598ad234ee36d58278eb54bdd8fc6;p=pdclib.old diff --git a/testing/_PDCLIB_test.h b/testing/_PDCLIB_test.h index ad02b0f..f380e61 100644 --- a/testing/_PDCLIB_test.h +++ b/testing/_PDCLIB_test.h @@ -11,23 +11,43 @@ /* -------------------------------------------------------------------------- */ #include +#include +#include +#include +#include -char const abcde[] = "abcde"; -char const abcdx[] = "abcdx"; -char const * teststring = "1234567890\nABCDEFGHIJKLMNOPQRSTUVWXYZ\nabcdefghijklmnopqrstuvwxyz\n"; +/* Some strings used for and testing. */ +static char const abcde[] = "abcde"; +static char const abcdx[] = "abcdx"; +static char const teststring[] = "1234567890\nABCDEFGHIJKLMNOPQRSTUVWXYZ\nabcdefghijklmnopqrstuvwxyz\n"; -int NO_TESTDRIVER = 0; +static wchar_t const wabcde[] = L"abcde"; +static wchar_t const wabcdx[] = L"abcdx"; +static wchar_t const wteststring[] = L"1234567890\nABCDEFGHIJKLMNOPQRSTUVWXYZ\nabcdefghijklmnopqrstuvwxyz\n"; -static int rc = 0; +/* Temporary file names */ +static char const testfile[]="testing/testfile"; +static char const testfile1[]="testing/testfile1"; +static char const testfile2[]="testing/testfile2"; +#define NO_TESTDRIVER 0 + +static int TEST_RESULTS = 0; + +/* TESTCASE() - generic test */ #define TESTCASE( x ) if ( x ) {} \ - else { rc += 1; printf( "FAILED: " __FILE__ ", line %d - %s\n", __LINE__, #x ); } + else { TEST_RESULTS += 1; printf( "FAILED: " __FILE__ ", line %d - %s\n", __LINE__, #x ); } +/* TESTCASE_NOREG() - PDCLib-only test */ #ifndef REGTEST -#define TESTCASE_NOREG( x ) TESTCASE( x ) + #define TESTCASE_NOREG( x ) TESTCASE( x ) #else -#define TESTCASE_NOREG( x ) + #define TESTCASE_NOREG( x ) #endif -#define TEST_RESULTS rc +/* Include printf() / scanf() test macros if required */ + +#if defined( _PDCLIB_FILEIO ) || defined( _PDCLIB_STRINGIO ) +#include "_PDCLIB_iotest.h" +#endif