X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fassert.c;h=349570c70b5a00ee1b075c14e83ff047f26aed0c;hb=7e24ed86582cc69da9d02ce2b212858e2a2cd6ef;hp=67bf6d9412de144fb40e2cbcc8eea59610b495ac;hpb=fed7bd2546a24c265b7a4c74b2b2829a1738a1db;p=pdclib.old diff --git a/functions/assert.c b/functions/assert.c index 67bf6d9..349570c 100644 --- a/functions/assert.c +++ b/functions/assert.c @@ -31,12 +31,38 @@ void _PDCLIB_assert( char const * const message ) #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 ) +{ + TESTCASE( ! EXPECTED_ABORT ); + exit( rc ); +} + +#define NDEBUG +#include + +int disabled_test() +{ + int i = 0; + assert( i == 0 ); /* NDEBUG set, condition met */ + assert( i == 1 ); /* NDEBUG set, condition fails */ + return i; +} + +#undef NDEBUG +#include int main() { - int NO_TESTDRIVER = 0; BEGIN_TESTS; - TESTCASE( NO_TESTDRIVER ); + TESTCASE( signal( SIGABRT, &aborthandler ) != SIG_ERR ); + assert( UNEXPECTED_ABORT ); /* NDEBUG not set, condition met */ + assert( EXPECTED_ABORT ); /* NDEBUG not set, condition fails - should abort */ return TEST_RESULTS; }