diff options
author | Simon Glass <sjg@chromium.org> | 2025-01-20 14:25:44 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2025-01-24 14:34:40 -0600 |
commit | 1ade3afa2da2242ad1006dc393a3bb3242226d4c (patch) | |
tree | 80b99671469110de2b6383bbde8530337b8beac6 /test/cmd_ut.c | |
parent | 87cf479fdb7f35878133295e306192f118ea2336 (diff) |
test: Drop the function for running mbr tests
Use the new suite-runner to run these tests instead.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'test/cmd_ut.c')
-rw-r--r-- | test/cmd_ut.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/cmd_ut.c b/test/cmd_ut.c index a196702dd17..1a69b1c215b 100644 --- a/test/cmd_ut.c +++ b/test/cmd_ut.c @@ -159,7 +159,7 @@ static struct suite suites[] = { #endif #if defined(CONFIG_SANDBOX) && defined(CONFIG_CMD_MBR) && defined(CONFIG_CMD_MMC) \ && defined(CONFIG_MMC_SANDBOX) && defined(CONFIG_MMC_WRITE) - SUITE_CMD(mbr, do_ut_mbr), + SUITE(mbr), #endif SUITE_CMD(mem, do_ut_mem), #if defined(CONFIG_SANDBOX) && defined(CONFIG_CMD_SETEXPR) |