diff options
author | Simon Glass <sjg@chromium.org> | 2025-01-20 14:25:37 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2025-01-24 14:34:40 -0600 |
commit | 7c012db10608afaa04c784187a1bc8f07b9ac4eb (patch) | |
tree | f8ca57e3a11eceb18a26a8fc6f2deff4b42549ee /test/cmd_ut.c | |
parent | cfc0f46cd05ec166509f344b4320976a8fba8747 (diff) |
test: Drop the function for running dm 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 1fda67abd95..a0905ec54b7 100644 --- a/test/cmd_ut.c +++ b/test/cmd_ut.c @@ -133,7 +133,7 @@ static struct suite suites[] = { #endif SUITE(common), #if defined(CONFIG_UT_DM) - SUITE_CMD(dm, do_ut_dm), + SUITE(dm), #endif #if defined(CONFIG_UT_ENV) SUITE_CMD(env, do_ut_env), |