summaryrefslogtreecommitdiff
path: root/test.c
diff options
context:
space:
mode:
Diffstat (limited to 'test.c')
-rw-r--r--test.c5
1 files changed, 4 insertions, 1 deletions
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)