summaryrefslogtreecommitdiff
path: root/test/cmd
diff options
context:
space:
mode:
authorSimon Glass <[email protected]>2025-01-20 14:25:34 -0700
committerTom Rini <[email protected]>2025-01-24 14:34:40 -0600
commit9e93c249f7a3b16ced4844c1c41b5298c7b4907b (patch)
tree94da48665fe994ff09d6042595fb5bda62530fb6 /test/cmd
parent7bbf2f7983c9ba5b8588ed86777b4b0b21eb542a (diff)
test: Drop the function for running bdinfo 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/bdinfo.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/test/cmd/bdinfo.c b/test/cmd/bdinfo.c
index b0b24bcb5a7..7408c271a30 100644
--- a/test/cmd/bdinfo.c
+++ b/test/cmd/bdinfo.c
@@ -282,11 +282,3 @@ static int bdinfo_test_eth(struct unit_test_state *uts)
return 0;
}
BDINFO_TEST(bdinfo_test_eth, UTF_CONSOLE);
-
-int do_ut_bdinfo(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
-{
- struct unit_test *tests = UNIT_TEST_SUITE_START(bdinfo);
- const int n_ents = UNIT_TEST_SUITE_COUNT(bdinfo);
-
- return cmd_ut_category("bdinfo", "bdinfo_test_", tests, n_ents, argc, argv);
-}