]> pd.if.org Git - pdclib/blob - functions/assert.c
Added 'void' to empty parameter lists.
[pdclib] / functions / assert.c
1 /* _PDCLIB_assert( char * )
2
3    This file is part of the Public Domain C Library (PDCLib).
4    Permission is granted to use, modify, and / or redistribute at will.
5 */
6
7 #include <stdio.h>
8 #include <stdlib.h>
9
10 #ifndef _PDCLIB_AUX_H
11 #define _PDCLIB_AUX_H _PDCLIB_AUX_H
12 #include <_PDCLIB_aux.h>
13 #endif
14
15 #if _PDCLIB_C_VERSION == 99
16 void _PDCLIB_assert( char const * const message1, char const * const function, char const * const message2 )
17 {
18     fputs( message1, stderr );
19     fputs( function, stderr );
20     fputs( message2, stderr );
21     abort();
22 }
23 #else
24 void _PDCLIB_assert( char const * const message )
25 {
26     fputs( message, stderr );
27     abort();
28 }
29 #endif
30
31
32 #ifdef TEST
33 #include <_PDCLIB_test.h>
34 #include <signal.h>
35
36 static int rc = 0;
37 static int EXPECTED_ABORT = 0;
38 static int UNEXPECTED_ABORT = 1;
39
40 void aborthandler( int signal )
41 {
42     TESTCASE( ! EXPECTED_ABORT );
43     exit( rc );
44 }
45
46 #define NDEBUG
47 #include <assert.h>
48
49 int disabled_test()
50 {
51     int i = 0;
52     assert( i == 0 ); /* NDEBUG set, condition met */
53     assert( i == 1 ); /* NDEBUG set, condition fails */
54     return i;
55 }
56
57 #undef NDEBUG
58 #include <assert.h>
59
60 int main()
61 {
62     BEGIN_TESTS;
63     TESTCASE( signal( SIGABRT, &aborthandler ) != SIG_ERR );
64     assert( UNEXPECTED_ABORT ); /* NDEBUG not set, condition met */
65     assert( EXPECTED_ABORT ); /* NDEBUG not set, condition fails - should abort */
66     return TEST_RESULTS;
67 }
68
69 #endif