From 844b89dbfdd41ced4666d2bb99ce0bf99503524b Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Sat, 20 Jan 2001 00:45:14 +0000 Subject: Reworked all test suite makefiles (man did they need it). Refactored testsuite.h so it behaves the way I want it to. As policy now, all test apps are _supposed_ to use testsuite.h (not all have been converted to do this yet). It is simple, clean, and works. -Erik --- test/assert/assert.c | 29 ++++++++++++++++++++--------- 1 file changed, 20 insertions(+), 9 deletions(-) (limited to 'test/assert/assert.c') diff --git a/test/assert/assert.c b/test/assert/assert.c index 6d474ccc2..866c362f0 100644 --- a/test/assert/assert.c +++ b/test/assert/assert.c @@ -24,26 +24,37 @@ #include #include #include +#include +#include "../testsuite.h" +int got_abort; -int main( int argc, char **argv) +void aborthandler(int junk) { + got_abort=1; +} - printf( "Testing functions defined in assert.h\n"); +int main( int argc, char **argv) +{ + signal(SIGABRT, aborthandler); + + init_testsuite("Testing functions defined in assert.h:\n\t"); - printf( "Testing \"assert(0==0)\"\n"); + got_abort=0; assert(0==0); + TEST_NUMERIC(got_abort, 0); - printf( "Testing \"assert(0==1)\" with NDEBUG disabled\n"); -#undef NDEBUG +#define NDEBUG + got_abort=0; + printf("Don't worry -- This next test is supposed to print an assert message:\n"); + fprintf(stderr, "\t"); assert(0==1); + TEST_NUMERIC(got_abort, 0); -#define NDEBUG - printf( "Testing \"assert(0==1)\" with NDEBUG enabled\n"); #undef NDEBUG + got_abort=0; assert(0==1); - - printf( "Finished testing assert.h\n"); + TEST_NUMERIC(got_abort, 1); exit(0); } -- cgit v1.2.3