mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-18 19:04:38 +00:00
test: Drop the function for running font tests
Use the new suite-runner to run these tests instead. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
45dfbdde37
commit
a9976e52be
3 changed files with 1 additions and 10 deletions
|
@ -37,7 +37,6 @@ int do_ut_bootstd(struct cmd_tbl *cmdtp, int flag, int argc,
|
|||
char *const argv[]);
|
||||
int do_ut_bloblist(struct cmd_tbl *cmdtp, int flag, int argc,
|
||||
char *const argv[]);
|
||||
int do_ut_font(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]);
|
||||
int do_ut_hush(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]);
|
||||
int do_ut_lib(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]);
|
||||
int do_ut_loadm(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]);
|
||||
|
|
|
@ -85,11 +85,3 @@ static int font_test_base(struct unit_test_state *uts)
|
|||
}
|
||||
FONT_TEST(font_test_base, UTF_SCAN_PDATA | UTF_SCAN_FDT | UTF_CONSOLE |
|
||||
UTF_DM);
|
||||
|
||||
int do_ut_font(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
|
||||
{
|
||||
struct unit_test *tests = UNIT_TEST_SUITE_START(font);
|
||||
const int n_ents = UNIT_TEST_SUITE_COUNT(font);
|
||||
|
||||
return cmd_ut_category("font", "font_test_", tests, n_ents, argc, argv);
|
||||
}
|
||||
|
|
|
@ -143,7 +143,7 @@ static struct suite suites[] = {
|
|||
SUITE(fdt),
|
||||
#endif
|
||||
#ifdef CONFIG_CONSOLE_TRUETYPE
|
||||
SUITE_CMD(font, do_ut_font),
|
||||
SUITE(font),
|
||||
#endif
|
||||
#ifdef CONFIG_UT_OPTEE
|
||||
SUITE_CMD(optee, do_ut_optee),
|
||||
|
|
Loading…
Add table
Reference in a new issue