From a3ec7bf41d14a8fb86508748ca3fa52c491710d2 Mon Sep 17 00:00:00 2001 From: John Jones Date: Thu, 2 Feb 2017 14:10:55 -0500 Subject: [PATCH] Small change to provide a little more information for testing --- test/testit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/testit.c b/test/testit.c index e385f84..8f8b2c5 100644 --- a/test/testit.c +++ b/test/testit.c @@ -133,7 +133,7 @@ int main(int argc, char** argv) { printf("***** No tests found *****\n"); else { if (counter > 0) { - printf("***** There were %d failed test(s) *****\n", counter); + printf("***** There were %d failed (out of %d) test(s) *****\n", counter, tests_ran); } else { printf("All %d tests passed\n", tests_ran); }