From: Simon Glass Date: Mon, 20 Jan 2025 21:25:39 +0000 (-0700) Subject: test: Drop the function for running exit tests X-Git-Tag: v2025.04-rc1~11^2~27 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ca917e491f81916ef4accc34615680ffae161430;p=thirdparty%2Fu-boot.git test: Drop the function for running exit tests Use the new suite-runner to run these tests instead. Signed-off-by: Simon Glass --- diff --git a/include/test/suites.h b/include/test/suites.h index b78436fe2b2..70b9af1fd05 100644 --- a/include/test/suites.h +++ b/include/test/suites.h @@ -37,7 +37,6 @@ int do_ut_bootstd(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]); int do_ut_bloblist(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]); -int do_ut_exit(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]); int do_ut_fdt(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]); int do_ut_font(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]); int do_ut_hush(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]); diff --git a/test/cmd/exit.c b/test/cmd/exit.c index d1eacdc36c2..71c37edcdf6 100644 --- a/test/cmd/exit.c +++ b/test/cmd/exit.c @@ -110,12 +110,3 @@ static int cmd_exit_test(struct unit_test_state *uts) return 0; } EXIT_TEST(cmd_exit_test, UTF_CONSOLE); - -int do_ut_exit(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]) -{ - struct unit_test *tests = UNIT_TEST_SUITE_START(exit); - const int n_ents = UNIT_TEST_SUITE_COUNT(exit); - - return cmd_ut_category("exit", "exit_test_", tests, n_ents, - argc, argv); -} diff --git a/test/cmd_ut.c b/test/cmd_ut.c index 155b187ad4b..387aacb916b 100644 --- a/test/cmd_ut.c +++ b/test/cmd_ut.c @@ -138,7 +138,7 @@ static struct suite suites[] = { #if defined(CONFIG_UT_ENV) SUITE(env), #endif - SUITE_CMD(exit, do_ut_exit), + SUITE(exit), #ifdef CONFIG_CMD_FDT SUITE_CMD(fdt, do_ut_fdt), #endif