X-Git-Url: https://git.gag.com/?a=blobdiff_plain;ds=sidebyside;f=internals%2F_PDCLIB_test.h;fp=internals%2F_PDCLIB_test.h;h=eba739122878918b627ee7ce9463174ebcfeddf0;hb=6859a5344974db8225118d31bea8cbbffa47e540;hp=302c27b8e24b1a4b9ab7e74b23a1d84115f678bf;hpb=1aab22e62c80e088fffc063b78700df289d7f5fb;p=fw%2Fpdclib diff --git a/internals/_PDCLIB_test.h b/internals/_PDCLIB_test.h index 302c27b..eba7391 100644 --- a/internals/_PDCLIB_test.h +++ b/internals/_PDCLIB_test.h @@ -14,11 +14,20 @@ char const abcde[] = "abcde"; char const abcdx[] = "abcdx"; +char const * teststring = "1234567890\nABCDEFGHIJKLMNOPQRSTUVWXYZ\nabcdefghijklmnopqrstuvwxyz\n"; int NO_TESTDRIVER = 0; -//#define BEGIN_TESTS unsigned int rc = 0 -static unsigned int rc = 0; +static int rc = 0; + #define TESTCASE( x ) if ( x ) {} \ else { rc += 1; printf( "FAILED: " __FILE__ ", line %d - " #x "\n", __LINE__ ); } + +#ifndef REGTEST +#define TESTCASE_NOREG( x ) TESTCASE( x ) +#else +#define TESTCASE_NOREG( x ) +#endif + #define TEST_RESULTS rc +