mirror of
https://github.com/jemalloc/jemalloc.git
synced 2026-04-19 08:51:22 +03:00
Streamline test output.
This commit is contained in:
parent
0f4f1efd94
commit
00a9cc7b6d
2 changed files with 16 additions and 13 deletions
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue