aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--core/tap.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/core/tap.h b/core/tap.h
index 98f5a35..f3f934d 100644
--- a/core/tap.h
+++ b/core/tap.h
@@ -16,6 +16,7 @@ static int exit_status() {
bool _e = (e); \
printf("%sok %d - ", _e ? "" : "not ", ++test_count); \
printf(__VA_ARGS__); \
+ puts(""); \
if (!_e) { \
failures++; \
printf(" Failed test (%s:%s() at line %d)\n", __FILE__, __func__, __LINE__); \
@@ -31,6 +32,7 @@ static int exit_status() {
while (_n--) { \
printf("ok %d # skip ", ++test_count); \
printf(__VA_ARGS__); \
+ puts(""); \
} \
} while (0)