diff options
Diffstat (limited to 'tests/tests.h')
-rw-r--r-- | tests/tests.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/tests.h b/tests/tests.h index 72c678c..51dc68a 100644 --- a/tests/tests.h +++ b/tests/tests.h @@ -1,5 +1,9 @@ #include "headers.h" +/* Make sure assert() works in tests. */ +#undef NDEBUG +#include <assert.h> + #define _msg(std, fmt, args...) fprintf(std, "%s:%s():%i: " fmt "\n", __FILE__, __func__, __LINE__, ##args) #define _stderr_msg(fmt, args...) _msg(stderr, fmt, ##args) #define _stderr_pmsg(fmt, args...) _msg(stderr, fmt ": %s", ##args, strerror(errno)) |