summaryrefslogtreecommitdiff
path: root/test/cmd
diff options
context:
space:
mode:
authorSimon Glass <[email protected]>2024-09-01 16:26:34 -0600
committerTom Rini <[email protected]>2024-09-18 13:01:00 -0600
commit017b441b2e3c879b20bcac496369f1213c4bdbcd (patch)
tree547ff71060989fb77173e7a950570473d2b96c0a /test/cmd
parent6cfc777b9695003c4303a9e61194fe2c64af40e3 (diff)
test: mbr: Drop a duplicate test
The test currently runs twice as it is declared twice. Unwind this. Signed-off-by: Simon Glass <[email protected]>
Diffstat (limited to 'test/cmd')
-rw-r--r--test/cmd/mbr.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/test/cmd/mbr.c b/test/cmd/mbr.c
index 72799612381..b14137e589a 100644
--- a/test/cmd/mbr.c
+++ b/test/cmd/mbr.c
@@ -479,9 +479,3 @@ int do_ut_mbr(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
return cmd_ut_category("mbr", "mbr_test_", tests, n_ents, argc, argv);
}
-
-static int dm_test_cmd_mbr(struct unit_test_state *uts)
-{
- return mbr_test_run(uts);
-}
-DM_TEST(dm_test_cmd_mbr, UTF_SCAN_FDT | UTF_CONSOLE);