diff options
| author | Jason Evans <je@fb.com> | 2013-12-12 14:58:26 -0800 |
|---|---|---|
| committer | Jason Evans <je@fb.com> | 2013-12-12 14:58:26 -0800 |
| commit | 00a9cc7b6dd04cf8f2e4406cf5262dd8ded315c9 (patch) | |
| tree | 85368af4168c323d79d13a70b640ae1be1b78084 /test/src | |
| parent | 0f4f1efd94d33a4bbf766d3d4e7e349fa7c0d3b9 (diff) | |
| download | platform_external_jemalloc_new-00a9cc7b6dd04cf8f2e4406cf5262dd8ded315c9.tar.gz platform_external_jemalloc_new-00a9cc7b6dd04cf8f2e4406cf5262dd8ded315c9.tar.bz2 platform_external_jemalloc_new-00a9cc7b6dd04cf8f2e4406cf5262dd8ded315c9.zip | |
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 eb1f5ef9..74eb9dce 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); } |
