Use the new suite-runner to run these tests instead.
Signed-off-by: Simon Glass <sjg@chromium.org>
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[]);
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);
-}
#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