X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=testing%2F_PDCLIB_test.h;h=62f5fb5f31ab49d277979a00fb7ba20aef5ddb4a;hb=d865c4403fc91d1f1ac95ba76febcee9f429bb97;hp=7a7ff0504961624accc330f593a196051d5d4253;hpb=55cf35957bf8dec0a489ba758c02c83303a5eb50;p=pdclib diff --git a/testing/_PDCLIB_test.h b/testing/_PDCLIB_test.h index 7a7ff05..62f5fb5 100644 --- a/testing/_PDCLIB_test.h +++ b/testing/_PDCLIB_test.h @@ -1,5 +1,3 @@ -/* $Id$ */ - /* PDCLib testing suite <_PDCLIB_test.h> This file is part of the Public Domain C Library (PDCLib). @@ -11,10 +9,15 @@ /* -------------------------------------------------------------------------- */ #include +#include +#include +/* Some strings used for and testing. */ static char const abcde[] = "abcde"; static char const abcdx[] = "abcdx"; static char const teststring[] = "1234567890\nABCDEFGHIJKLMNOPQRSTUVWXYZ\nabcdefghijklmnopqrstuvwxyz\n"; + +/* Temporary file names */ static char const testfile[]="testing/testfile"; static char const testfile1[]="testing/testfile1"; static char const testfile2[]="testing/testfile2"; @@ -23,11 +26,19 @@ static char const testfile2[]="testing/testfile2"; static int TEST_RESULTS = 0; +/* TESTCASE() - generic test */ #define TESTCASE( x ) if ( 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 + +/* Include printf() / scanf() test macros if required */ + +#if defined( _PDCLIB_FILEIO ) || defined( _PDCLIB_STRINGIO ) +#include "_PDCLIB_iotest.h" #endif