coreboot-kgpe-d16/tests/device/ddr4-test.c
Jakub Czapiga 7c6081e02b 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>
2021-09-01 19:38:09 +00:00

41 lines
1.3 KiB
C

/* SPDX-License-Identifier: GPL-2.0-only */
#include <device/dram/ddr4.h>
#include <tests/test.h>
static void ddr4_speed_mhz_to_mts_test(void **state)
{
assert_int_equal(0, ddr4_speed_mhz_to_reported_mts(0));
assert_int_equal(0, ddr4_speed_mhz_to_reported_mts(667));
assert_int_equal(1600, ddr4_speed_mhz_to_reported_mts(668));
assert_int_equal(1600, ddr4_speed_mhz_to_reported_mts(800));
assert_int_equal(1866, ddr4_speed_mhz_to_reported_mts(801));
assert_int_equal(1866, ddr4_speed_mhz_to_reported_mts(933));
assert_int_equal(1866, ddr4_speed_mhz_to_reported_mts(934));
assert_int_equal(2133, ddr4_speed_mhz_to_reported_mts(1066));
assert_int_equal(2133, ddr4_speed_mhz_to_reported_mts(1067));
assert_int_equal(2400, ddr4_speed_mhz_to_reported_mts(1200));
assert_int_equal(2666, ddr4_speed_mhz_to_reported_mts(1333));
assert_int_equal(2933, ddr4_speed_mhz_to_reported_mts(1466));
assert_int_equal(3200, ddr4_speed_mhz_to_reported_mts(1467));
assert_int_equal(3200, ddr4_speed_mhz_to_reported_mts(1600));
assert_int_equal(0, ddr4_speed_mhz_to_reported_mts(1601));
assert_int_equal(0, ddr4_speed_mhz_to_reported_mts(INT16_MAX));
}
int main(void)
{
const struct CMUnitTest tests[] = {
cmocka_unit_test(ddr4_speed_mhz_to_mts_test)
};
return cb_run_group_tests(tests, NULL, NULL);
}