X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=internals%2F_PDCLIB_test.h;h=90c47bdc2e3f52449f21384c94f5134c1fa198dd;hb=12e17136786afb1775c9dc946cbe41f5e230c24a;hp=b35c994180ebd394d91ac271e30b05892490eb7a;hpb=917029150b8586ce751397543c79f33c8885bf13;p=pdclib.old diff --git a/internals/_PDCLIB_test.h b/internals/_PDCLIB_test.h index b35c994..90c47bd 100644 --- a/internals/_PDCLIB_test.h +++ b/internals/_PDCLIB_test.h @@ -1,23 +1,26 @@ -/* $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"; - -#define BEGIN_TESTS unsigned int rc = 0 -#define TESTCASE( x ) if ( x ) {} \ - else { rc += 1; printf( "Testcase failed: " __FILE__ " - " #x "\n" ); } -#define TEST_RESULTS rc +/* $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