7c6081e02b
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>
55 lines
1.2 KiB
C
55 lines
1.2 KiB
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
|
|
#include <commonlib/bsd/helpers.h>
|
|
#include <tests/test.h>
|
|
|
|
static void func(void)
|
|
{
|
|
function_called();
|
|
}
|
|
|
|
static void test_genmask(void **state)
|
|
{
|
|
assert_int_equal(GENMASK(4, 4), 0x10);
|
|
assert_int_equal(GENMASK(4, 3), 0x18);
|
|
assert_int_equal(GENMASK(4, 0), 0x1f);
|
|
/* Edge cases */
|
|
assert_int_equal(GENMASK(0, 0), 1);
|
|
assert_int_equal(GENMASK(31, 31), 0x80000000);
|
|
assert_int_equal(GENMASK(31, 0), 0xffffffff);
|
|
assert_int_equal(GENMASK(63, 63), 0x8000000000000000);
|
|
assert_int_equal(GENMASK(63, 0), 0xffffffffffffffff);
|
|
}
|
|
|
|
static void test_retry(void **state)
|
|
{
|
|
int count;
|
|
|
|
/* 2-argument form */
|
|
count = 0;
|
|
assert_true(retry(3, ++count == 1));
|
|
count = 0;
|
|
assert_true(retry(3, ++count == 3));
|
|
count = 0;
|
|
assert_false(retry(3, ++count == 4));
|
|
|
|
/* 3-argument form */
|
|
expect_function_calls(func, 9);
|
|
assert_null(retry(10, NULL, func()));
|
|
|
|
assert_int_equal(retry(10, 999, func()), 999);
|
|
|
|
count = 0;
|
|
expect_function_calls(func, 3);
|
|
assert_true(retry(10, ++count == 4, func()));
|
|
}
|
|
|
|
int main(void)
|
|
{
|
|
const struct CMUnitTest tests[] = {
|
|
cmocka_unit_test(test_genmask),
|
|
cmocka_unit_test(test_retry),
|
|
};
|
|
|
|
return cb_run_group_tests(tests, NULL, NULL);
|
|
}
|