summaryrefslogtreecommitdiff
path: root/test/cmd/loadm.c
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2025-01-20 14:25:52 -0700
committerTom Rini <trini@konsulko.com>2025-01-24 14:34:40 -0600
commit822cb558e1a9415c3b4b8069fd62734d3d37ddfe (patch)
tree0fe1afc0ed262f51f31a8f714c903d33bc8773b7 /test/cmd/loadm.c
parentd5e5cb48e646ef089b57a4d924796b153f73fbfd (diff)
test: Drop the function for running loadm tests
Use the new suite-runner to run these tests instead. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'test/cmd/loadm.c')
-rw-r--r--test/cmd/loadm.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/test/cmd/loadm.c b/test/cmd/loadm.c
index 78bb12ce88c..3c623aa655f 100644
--- a/test/cmd/loadm.c
+++ b/test/cmd/loadm.c
@@ -58,12 +58,3 @@ static int loadm_test_load (struct unit_test_state *uts)
return 0;
}
LOADM_TEST(loadm_test_load, UTF_CONSOLE);
-
-int do_ut_loadm(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
-{
- struct unit_test *tests = UNIT_TEST_SUITE_START(loadm);
- const int n_ents = UNIT_TEST_SUITE_COUNT(loadm);
-
- return cmd_ut_category("loadm", "loadm_test_", tests, n_ents, argc,
- argv);
-}