summaryrefslogtreecommitdiff
path: root/test/cmd
diff options
context:
space:
mode:
authorSimon Glass <[email protected]>2025-01-20 14:25:41 -0700
committerTom Rini <[email protected]>2025-01-24 14:34:40 -0600
commita9976e52bea8d1b89469226989f7429d4b174050 (patch)
treee6116000bb5e9425311749738149fc66424776f3 /test/cmd
parent45dfbdde373587f13ba8edf5fb6783043cb5ee1c (diff)
test: Drop the function for running font tests
Use the new suite-runner to run these tests instead. Signed-off-by: Simon Glass <[email protected]>
Diffstat (limited to 'test/cmd')
-rw-r--r--test/cmd/font.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/test/cmd/font.c b/test/cmd/font.c
index d860efe8ce5..af88d1b5459 100644
--- a/test/cmd/font.c
+++ b/test/cmd/font.c
@@ -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);
-}