aboutsummaryrefslogtreecommitdiff
path: root/tests/lib/memrange-test.c
diff options
context:
space:
mode:
authorJakub Czapiga <jacz@semihalf.com>2021-08-25 16:27:35 +0200
committerPatrick Georgi <pgeorgi@google.com>2021-09-01 19:38:09 +0000
commit7c6081e02b319a29268429ce38fe0345a85e8299 (patch)
tree15624e954585caf3c1d966646556260c3b05ed47 /tests/lib/memrange-test.c
parentc2310a16adaca7ac32f21c083258ceb27d12ab89 (diff)
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 <jacz@semihalf.com> Change-Id: I4fd936d00d77cbe2637b857ba03b4a208428ea0d Reviewed-on: https://review.coreboot.org/c/coreboot/+/57144 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Paul Fagerburg <pfagerburg@chromium.org> Reviewed-by: Julius Werner <jwerner@chromium.org>
Diffstat (limited to 'tests/lib/memrange-test.c')
-rw-r--r--tests/lib/memrange-test.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/lib/memrange-test.c b/tests/lib/memrange-test.c
index f9e6056d35..1bdd62e028 100644
--- a/tests/lib/memrange-test.c
+++ b/tests/lib/memrange-test.c
@@ -629,10 +629,10 @@ int main(void)
cmocka_unit_test(test_memrange_add_resources_filter),
};
- return cmocka_run_group_tests_name("Boundary on 4GiB",
+ return cmocka_run_group_tests_name(__TEST_NAME__"(Boundary on 4GiB)",
tests, setup_test_1, NULL) +
- cmocka_run_group_tests_name("Boundaries 1 byte from 4GiB",
+ cmocka_run_group_tests_name(__TEST_NAME__"(Boundaries 1 byte from 4GiB)",
tests, setup_test_2, NULL) +
- cmocka_run_group_tests_name("Range over 4GiB boundary",
+ cmocka_run_group_tests_name(__TEST_NAME__"(Range over 4GiB boundary)",
tests, setup_test_3, NULL);
}