X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=internals%2F_PDCLIB_test.h;h=302c27b8e24b1a4b9ab7e74b23a1d84115f678bf;hb=66c9a724d570ec507c640f6708fe48c4b8ca8b80;hp=66ffb069257b39d7475700b14b9149d5afd5ac89;hpb=492cae1767efcce269e5472dcf0a18e6abf546a1;p=pdclib diff --git a/internals/_PDCLIB_test.h b/internals/_PDCLIB_test.h index 66ffb06..302c27b 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). @@ -19,7 +17,8 @@ char const abcdx[] = "abcdx"; int NO_TESTDRIVER = 0; -#define BEGIN_TESTS unsigned int rc = 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__ ); } + else { rc += 1; printf( "FAILED: " __FILE__ ", line %d - " #x "\n", __LINE__ ); } #define TEST_RESULTS rc