X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2F_PDCLIB%2Fassert.c;h=fb3d24bfb1260219dbc401b77c6418e5df933b6f;hb=9f87d9e27e74d9e06e0c93114ffd70a45ee152fa;hp=5c4b310936ac4dcf3eacd2cdcb43adb48d12149b;hpb=c7a9c2e3a08068d6b10656c0d3ba683f6ec74fa9;p=pdclib diff --git a/functions/_PDCLIB/assert.c b/functions/_PDCLIB/assert.c index 5c4b310..fb3d24b 100644 --- a/functions/_PDCLIB/assert.c +++ b/functions/_PDCLIB/assert.c @@ -1,7 +1,5 @@ /* $Id$ */ -/* Release $Name$ */ - /* _PDCLIB_assert( char const * ) This file is part of the Public Domain C Library (PDCLib). @@ -10,11 +8,11 @@ #include #include +#include + +#ifndef REGTEST -#ifndef _PDCLIB_AUX_H -#define _PDCLIB_AUX_H _PDCLIB_AUX_H #include <_PDCLIB_aux.h> -#endif #if _PDCLIB_C_VERSION == 99 void _PDCLIB_assert( char const * const message1, char const * const function, char const * const message2 ) @@ -32,25 +30,25 @@ void _PDCLIB_assert( char const * const message ) } #endif +#endif #ifdef TEST #include <_PDCLIB_test.h> #include -static int rc = 0; static int EXPECTED_ABORT = 0; static int UNEXPECTED_ABORT = 1; -void aborthandler( int signal ) +static void aborthandler( int sig ) { TESTCASE( ! EXPECTED_ABORT ); - exit( rc ); + exit( (signed int)TEST_RESULTS ); } #define NDEBUG #include -int disabled_test() +static int disabled_test( void ) { int i = 0; assert( i == 0 ); /* NDEBUG set, condition met */ @@ -61,10 +59,10 @@ int disabled_test() #undef NDEBUG #include -int main() +int main( void ) { - BEGIN_TESTS; TESTCASE( signal( SIGABRT, &aborthandler ) != SIG_ERR ); + TESTCASE( disabled_test() == 0 ); assert( UNEXPECTED_ABORT ); /* NDEBUG not set, condition met */ assert( EXPECTED_ABORT ); /* NDEBUG not set, condition fails - should abort */ return TEST_RESULTS;