summaryrefslogtreecommitdiff
path: root/test/cmd
diff options
context:
space:
mode:
authorSimon Glass <[email protected]>2025-01-20 14:25:44 -0700
committerTom Rini <[email protected]>2025-01-24 14:34:40 -0600
commit1ade3afa2da2242ad1006dc393a3bb3242226d4c (patch)
tree80b99671469110de2b6383bbde8530337b8beac6 /test/cmd
parent87cf479fdb7f35878133295e306192f118ea2336 (diff)
test: Drop the function for running mbr 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/mbr.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/test/cmd/mbr.c b/test/cmd/mbr.c
index ad859921ce5..45bab04923a 100644
--- a/test/cmd/mbr.c
+++ b/test/cmd/mbr.c
@@ -471,11 +471,3 @@ static int mbr_test_run(struct unit_test_state *uts)
/* Declare mbr test */
UNIT_TEST(mbr_test_run, UTF_CONSOLE, mbr);
-
-int do_ut_mbr(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
-{
- struct unit_test *tests = UNIT_TEST_SUITE_START(mbr);
- const int n_ents = UNIT_TEST_SUITE_COUNT(mbr);
-
- return cmd_ut_category("mbr", "mbr_test_", tests, n_ents, argc, argv);
-}