From 8e55e9606723eb25944f3a7d7c051d17d982a00c Mon Sep 17 00:00:00 2001 From: Zach Johnson Date: Wed, 24 Sep 2014 13:57:45 -0700 Subject: [PATCH] Make bdtest report the total number of tests (sanity + suite) There are currently 11 tests, but if one failed it would report 1/9 rather than 1/11. --- test/suite/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/suite/main.c b/test/suite/main.c index c9ccec525..1aff77c94 100644 --- a/test/suite/main.c +++ b/test/suite/main.c @@ -154,7 +154,7 @@ int main(int argc, char **argv) { printf("\n"); if (fail) { - printf("%d/%d tests failed. See above for failed test cases.\n", fail, test_suite_size); + printf("%d/%d tests failed. See above for failed test cases.\n", fail, sanity_suite_size + test_suite_size); } else { printf("All tests passed!\n"); } -- 2.11.0