test: Drop the function for running fdt tests

Use the new suite-runner to run these tests instead.

Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
Simon Glass
2025-01-20 14:25:40 -07:00
committed by Tom Rini
parent ca917e491f
commit 45dfbdde37
3 changed files with 1 additions and 10 deletions

View File

@@ -1462,11 +1462,3 @@ static int fdt_test_apply(struct unit_test_state *uts)
return 0;
}
FDT_TEST(fdt_test_apply, UTF_CONSOLE);
int do_ut_fdt(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
{
struct unit_test *tests = UNIT_TEST_SUITE_START(fdt);
const int n_ents = UNIT_TEST_SUITE_COUNT(fdt);
return cmd_ut_category("fdt", "fdt_test_", tests, n_ents, argc, argv);
}

View File

@@ -140,7 +140,7 @@ static struct suite suites[] = {
#endif
SUITE(exit),
#ifdef CONFIG_CMD_FDT
SUITE_CMD(fdt, do_ut_fdt),
SUITE(fdt),
#endif
#ifdef CONFIG_CONSOLE_TRUETYPE
SUITE_CMD(font, do_ut_font),