about summary refs log tree commit diff stats
path: root/test/src/test-common.h
diff options
context:
space:
mode:
Diffstat (limited to 'test/src/test-common.h')
-rw-r--r--test/src/test-common.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/src/test-common.h b/test/src/test-common.h
index 1a3e79d..a78bf9d 100644
--- a/test/src/test-common.h
+++ b/test/src/test-common.h
@@ -14,6 +14,7 @@
     do {                                                                     \
       if ((VALUE)) break;                                                    \
       fprintf(stderr, "Assertion failure: " #MESSAGE "\n");                  \
+      abort();                                                               \
     } while (0);
 
 #define CHECK_EQ(A, B, MESSAGE) CHECK((A) == (B), MESSAGE)