From 76a8382016ff4b9c6b7d2d7912ced47078b37096 Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Thu, 28 Feb 2019 21:20:39 -0500 Subject: account for verbosity in test_void_imp() --- test.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/test.c b/test.c index 531d25b..01a6dd5 100644 --- a/test.c +++ b/test.c @@ -89,7 +89,10 @@ void test_int_equals_imp(const char *expression, int result, int expected) void test_void_imp(const char *expression) { - printf("? %s\n", expression); + putchar('?'); + if (verbose) { + printf(" %s\n", expression); + } } void test_bool_imp(const char *expression, int result, int expected) -- cgit v1.2.1