summaryrefslogtreecommitdiffstats
path: root/src/test.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/test.h')
-rw-r--r--src/test.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/test.h b/src/test.h
index a1f89ce..3aba06f 100644
--- a/src/test.h
+++ b/src/test.h
@@ -3,10 +3,13 @@
#define TEST_H
#include <stdio.h>
+#include "intf.h"
#define TEST_ASSERT(cond, out_label) \
do { \
printf(" ASSERT '" #cond "' ... "); \
+ if (tsnif_debug) \
+ printf("\n"); \
if (!(cond)) { \
rc = -1; \
printf("FAILED\n"); \