X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=internals%2F_PDCLIB_test.h;h=ad02b0fb71839924851a9f00f5ec30e5a63f7091;hb=6eea6156228b271c540b162b4039f0fa46754efb;hp=057f957951b60a53aaf8f703a87e745080677017;hpb=eaa6524ce2f7499cea9633be6fba9e0de37d0210;p=fw%2Fpdclib diff --git a/internals/_PDCLIB_test.h b/internals/_PDCLIB_test.h index 057f957..ad02b0f 100644 --- a/internals/_PDCLIB_test.h +++ b/internals/_PDCLIB_test.h @@ -1,7 +1,5 @@ /* $Id$ */ -/* Release $Name$ */ - /* PDCLib testing suite <_PDCLIB_test.h> This file is part of the Public Domain C Library (PDCLib). @@ -16,8 +14,20 @@ char const abcde[] = "abcde"; char const abcdx[] = "abcdx"; +char const * teststring = "1234567890\nABCDEFGHIJKLMNOPQRSTUVWXYZ\nabcdefghijklmnopqrstuvwxyz\n"; + +int NO_TESTDRIVER = 0; + +static int rc = 0; -#define BEGIN_TESTS unsigned int rc = 0 #define TESTCASE( x ) if ( x ) {} \ - else { rc += 1; printf( "Testcase failed: " __FILE__ ", line %d - " #x "\n", __LINE__ ); } + else { rc += 1; printf( "FAILED: " __FILE__ ", line %d - %s\n", __LINE__, #x ); } + +#ifndef REGTEST +#define TESTCASE_NOREG( x ) TESTCASE( x ) +#else +#define TESTCASE_NOREG( x ) +#endif + #define TEST_RESULTS rc +