From 7c6081e02b319a29268429ce38fe0345a85e8299 Mon Sep 17 00:00:00 2001 From: Jakub Czapiga Date: Wed, 25 Aug 2021 16:27:35 +0200 Subject: tests: Improve test output readability When running multiple tests, e.g. by using unit-tests target, it is hard to differentiate, which output comes from which file and/or configuration. This patch makes the output easier to analyze and understand by using new wrapper macro cb_run_group_tests(). This macro uses __TEST_NAME__ value (containing test path and Makefile test name) as a group name when calling cmocka group runner. Example: Test path: tests/lib/ Makefile test name: cbmem_stage_cache-test Test group array name: tests Result: tests/lib/cbmem_stage_cache-test(tests) Signed-off-by: Jakub Czapiga Change-Id: I4fd936d00d77cbe2637b857ba03b4a208428ea0d Reviewed-on: https://review.coreboot.org/c/coreboot/+/57144 Tested-by: build bot (Jenkins) Reviewed-by: Paul Fagerburg Reviewed-by: Julius Werner --- tests/commonlib/bsd/helpers-test.c | 2 +- tests/commonlib/region-test.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/commonlib') diff --git a/tests/commonlib/bsd/helpers-test.c b/tests/commonlib/bsd/helpers-test.c index 324c901b12..6fae331fd7 100644 --- a/tests/commonlib/bsd/helpers-test.c +++ b/tests/commonlib/bsd/helpers-test.c @@ -51,5 +51,5 @@ int main(void) cmocka_unit_test(test_retry), }; - return cmocka_run_group_tests(tests, NULL, NULL); + return cb_run_group_tests(tests, NULL, NULL); } diff --git a/tests/commonlib/region-test.c b/tests/commonlib/region-test.c index fab5961173..59f272a7d9 100644 --- a/tests/commonlib/region-test.c +++ b/tests/commonlib/region-test.c @@ -404,5 +404,5 @@ int main(void) cmocka_unit_test(test_mem_rdev), }; - return cmocka_run_group_tests(tests, NULL, NULL); + return cb_run_group_tests(tests, NULL, NULL); } -- cgit v1.2.3