mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-24 21:54:01 +00:00
test: font: Add dependencies on fonts
The font test needs two fonts. If one is not available, skip out early, to avoid an error. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
40565bba7c
commit
078c6e2f8a
1 changed files with 5 additions and 1 deletions
|
@ -30,13 +30,17 @@ static int font_test_base(struct unit_test_state *uts)
|
|||
ut_assertok(console_record_reset_enable());
|
||||
ut_assertok(run_command("font list", 0));
|
||||
ut_assert_nextline("nimbus_sans_l_regular");
|
||||
ut_assert_nextline("cantoraone_regular");
|
||||
if (IS_ENABLED(CONFIG_CONSOLE_TRUETYPE_CANTORAONE))
|
||||
ut_assert_nextline("cantoraone_regular");
|
||||
ut_assertok(ut_check_console_end(uts));
|
||||
|
||||
ut_assertok(vidconsole_get_font_size(dev, &name, &size));
|
||||
ut_asserteq_str("nimbus_sans_l_regular", name);
|
||||
ut_asserteq(18, size);
|
||||
|
||||
if (!IS_ENABLED(CONFIG_CONSOLE_TRUETYPE_CANTORAONE))
|
||||
return 0;
|
||||
|
||||
max_metrics = 1;
|
||||
if (IS_ENABLED(CONFIG_CONSOLE_TRUETYPE))
|
||||
max_metrics = IF_ENABLED_INT(CONFIG_CONSOLE_TRUETYPE,
|
||||
|
|
Loading…
Reference in a new issue