X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=internals%2F_PDCLIB_test.h;h=ad02b0fb71839924851a9f00f5ec30e5a63f7091;hb=d2fb0b6ec7b5cad98eeca38797f348d9b64b884e;hp=90c47bdc2e3f52449f21384c94f5134c1fa198dd;hpb=d02f38605b53cdff5460cc6b9e1b2a80c3a2ba4c;p=pdclib diff --git a/internals/_PDCLIB_test.h b/internals/_PDCLIB_test.h index 90c47bd..ad02b0f 100644 --- a/internals/_PDCLIB_test.h +++ b/internals/_PDCLIB_test.h @@ -1,26 +1,33 @@ -/* $Id$ */ - -/* Release $Name$ */ - -/* PDCLib testing suite <_PDCLIB_test.h> - - This file is part of the Public Domain C Library (PDCLib). - Permission is granted to use, modify, and / or redistribute at will. -*/ - -/* -------------------------------------------------------------------------- */ -/* Helper macros for test drivers */ -/* -------------------------------------------------------------------------- */ - -#include - -char const abcde[] = "abcde"; -char const abcdx[] = "abcdx"; - -int NO_TESTDRIVER = 0; - -//#define BEGIN_TESTS unsigned int rc = 0 -static unsigned int rc = 0; -#define TESTCASE( x ) if ( x ) {} \ - else { rc += 1; printf( "Testcase failed: " __FILE__ ", line %d - " #x "\n", __LINE__ ); } -#define TEST_RESULTS rc +/* $Id$ */ + +/* PDCLib testing suite <_PDCLIB_test.h> + + This file is part of the Public Domain C Library (PDCLib). + Permission is granted to use, modify, and / or redistribute at will. +*/ + +/* -------------------------------------------------------------------------- */ +/* Helper macros for test drivers */ +/* -------------------------------------------------------------------------- */ + +#include + +char const abcde[] = "abcde"; +char const abcdx[] = "abcdx"; +char const * teststring = "1234567890\nABCDEFGHIJKLMNOPQRSTUVWXYZ\nabcdefghijklmnopqrstuvwxyz\n"; + +int NO_TESTDRIVER = 0; + +static int rc = 0; + +#define TESTCASE( x ) if ( x ) {} \ + 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 +