diff options
author | Simon Glass <sjg@chromium.org> | 2025-01-20 14:25:42 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2025-01-24 14:34:40 -0600 |
commit | d824e20fc27c2c40d8638b1cdf9ad6ea2cc32420 (patch) | |
tree | d37b412157220d888971a8b965a1d08f443f080f /test/cmd_ut.c | |
parent | a9976e52bea8d1b89469226989f7429d4b174050 (diff) |
test: Drop the function for running lib 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 db96a4ac2ac..27d090c7225 100644 --- a/test/cmd_ut.c +++ b/test/cmd_ut.c @@ -152,7 +152,7 @@ static struct suite suites[] = { SUITE_CMD(overlay, do_ut_overlay), #endif #ifdef CONFIG_UT_LIB - SUITE_CMD(lib, do_ut_lib), + SUITE(lib), #endif #ifdef CONFIG_UT_LOG SUITE_CMD(log, do_ut_log), |