Jakub Czapiga has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/67371 )
Change subject: tests/commonlib/rational-test: Use test group runner wrapper ......................................................................
tests/commonlib/rational-test: Use test group runner wrapper
coreboot unit-tests framework requires tests to use cb_run_group_tests() instead of cmocka_run_group_tests() for Jenkins to work correctly. Wrapper ensures that each test has its own report file and does not overwrite results of other tests.
Signed-off-by: Jakub Czapiga jacz@semihalf.com Change-Id: Iead63cab0465f37b2da0c7b3ef256057e3a191a2 --- M tests/commonlib/rational-test.c 1 file changed, 16 insertions(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/71/67371/1
diff --git a/tests/commonlib/rational-test.c b/tests/commonlib/rational-test.c index 4d6c215..a64997e 100644 --- a/tests/commonlib/rational-test.c +++ b/tests/commonlib/rational-test.c @@ -52,6 +52,6 @@ cmocka_unit_test(test_rational), };
- return cmocka_run_group_tests(tests, NULL, NULL); + return cb_run_group_tests(tests, NULL, NULL); }