diff options
author | Simon Glass <sjg@chromium.org> | 2025-01-20 14:25:36 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2025-01-24 14:34:40 -0600 |
commit | cfc0f46cd05ec166509f344b4320976a8fba8747 (patch) | |
tree | 067fedd5e9026194155f9725702e3b3922fdd19c /test/cmd_ut.c | |
parent | 6054e8463c57d62668866a9ffb21654f5d510cfb (diff) |
test: Drop the function for running common 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 09538301cd7..1fda67abd95 100644 --- a/test/cmd_ut.c +++ b/test/cmd_ut.c @@ -131,7 +131,7 @@ static struct suite suites[] = { #ifdef CONFIG_CMDLINE SUITE(cmd), #endif - SUITE_CMD(common, do_ut_common), + SUITE(common), #if defined(CONFIG_UT_DM) SUITE_CMD(dm, do_ut_dm), #endif |