summaryrefslogtreecommitdiff
path: root/test/cmd/fdt.c
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2025-01-20 14:25:40 -0700
committerTom Rini <trini@konsulko.com>2025-01-24 14:34:40 -0600
commit45dfbdde373587f13ba8edf5fb6783043cb5ee1c (patch)
tree1207236e0300af8076c6b58c3f321dfd2a2f97f6 /test/cmd/fdt.c
parentca917e491f81916ef4accc34615680ffae161430 (diff)
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>
Diffstat (limited to 'test/cmd/fdt.c')
-rw-r--r--test/cmd/fdt.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/test/cmd/fdt.c b/test/cmd/fdt.c
index 74fd603bb02..ab6dbd45e54 100644
--- a/test/cmd/fdt.c
+++ b/test/cmd/fdt.c
@@ -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);
-}