diff options
author | Jason Evans <je@fb.com> | 2013-12-12 22:58:26 (GMT) |
---|---|---|
committer | Jason Evans <je@fb.com> | 2013-12-12 22:58:26 (GMT) |
commit | 00a9cc7b6dd04cf8f2e4406cf5262dd8ded315c9 (patch) | |
tree | 85368af4168c323d79d13a70b640ae1be1b78084 /test/src | |
parent | 0f4f1efd94d33a4bbf766d3d4e7e349fa7c0d3b9 (diff) | |
download | jemalloc-00a9cc7b6dd04cf8f2e4406cf5262dd8ded315c9.zip jemalloc-00a9cc7b6dd04cf8f2e4406cf5262dd8ded315c9.tar.gz jemalloc-00a9cc7b6dd04cf8f2e4406cf5262dd8ded315c9.tar.bz2 |
Streamline test output.
Diffstat (limited to 'test/src')
-rw-r--r-- | test/src/test.c | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/test/src/test.c b/test/src/test.c index eb1f5ef..74eb9dc 100644 --- a/test/src/test.c +++ b/test/src/test.c @@ -72,11 +72,13 @@ p_test(test_t* t, ...) } va_end(ap); - malloc_printf("tests: %u, pass: %u, skip: %u, fail: %u\n", - test_count, - test_counts[test_status_pass], - test_counts[test_status_skip], - test_counts[test_status_fail]); + malloc_printf("--- %s: %u/%u, %s: %u/%u, %s: %u/%u ---\n", + test_status_string(test_status_pass), + test_counts[test_status_pass], test_count, + test_status_string(test_status_skip), + test_counts[test_status_skip], test_count, + test_status_string(test_status_fail), + test_counts[test_status_fail], test_count); return (ret); } |