X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=testing%2F_PDCLIB_test.h;h=e6d8c3683c6fa29174b05a52d93203bf49e9d772;hb=f2a7978ab6a39b01883b730155237a3555b28b57;hp=4eaa9d284333531d824f39c824d462cc03840efe;hpb=0f88da0454edf3c1ca1a7f786c2fd9afdef0eb9c;p=pdclib diff --git a/testing/_PDCLIB_test.h b/testing/_PDCLIB_test.h index 4eaa9d2..e6d8c36 100644 --- a/testing/_PDCLIB_test.h +++ b/testing/_PDCLIB_test.h @@ -11,10 +11,16 @@ /* -------------------------------------------------------------------------- */ #include +#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,14 +29,20 @@ 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 ); } -#define TESTCASE_SPRINTF( x ) if ( strcmp( target, x ) == 0 ) {} \ - else { TEST_RESULTS += 1; printf( "FAILED: " __FILE__ " (" _PDCLIB_FILEID "), line %d - \"%s\" != \"%s\"\n", __LINE__, target, 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 +