random memory leak fixes and memory access fixes
[c11tester.git] / common.h
index 9794a92e8e8ea33a494b2772869b5171afa1bbe8..003dc805e180e5cc2c790329ec042ef66d6d120f 100644 (file)
--- a/common.h
+++ b/common.h
 #define DBG_ENABLED() (0)
 #endif
 
+void assert_hook(void);
+
 #define ASSERT(expr) \
 do { \
        if (!(expr)) { \
                fprintf(stderr, "Error: assertion failed in %s at line %d\n", __FILE__, __LINE__); \
+               print_trace(); \
+               model_print_summary(); \
+               assert_hook();                           \
                exit(EXIT_FAILURE); \
        } \
 } while (0);
 
+#define error_msg(...) fprintf(stderr, "Error: " __VA_ARGS__)
+
+void print_trace(void);
+void model_print_summary(void);
 #endif /* __COMMON_H__ */