1 // SPDX-License-Identifier: GPL-2.0
9 #include <test/suites.h>
10 #include <test/test.h>
12 static int do_ut_all(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
14 int cmd_ut_category(const char *name, struct unit_test *tests, int n_ents,
15 int argc, char * const argv[])
17 struct unit_test_state uts = { .fail_count = 0 };
18 struct unit_test *test;
21 printf("Running %d %s tests\n", n_ents, name);
23 for (test = tests; test < tests + n_ents; test++) {
24 if (argc > 1 && strcmp(argv[1], test->name))
26 printf("Test: %s\n", test->name);
28 uts.start = mallinfo();
33 printf("Failures: %d\n", uts.fail_count);
35 return uts.fail_count ? CMD_RET_FAILURE : 0;
38 static cmd_tbl_t cmd_ut_sub[] = {
39 U_BOOT_CMD_MKENT(all, CONFIG_SYS_MAXARGS, 1, do_ut_all, "", ""),
40 #if defined(CONFIG_UT_DM)
41 U_BOOT_CMD_MKENT(dm, CONFIG_SYS_MAXARGS, 1, do_ut_dm, "", ""),
43 #if defined(CONFIG_UT_ENV)
44 U_BOOT_CMD_MKENT(env, CONFIG_SYS_MAXARGS, 1, do_ut_env, "", ""),
46 #ifdef CONFIG_UT_OVERLAY
47 U_BOOT_CMD_MKENT(overlay, CONFIG_SYS_MAXARGS, 1, do_ut_overlay, "", ""),
50 U_BOOT_CMD_MKENT(time, CONFIG_SYS_MAXARGS, 1, do_ut_time, "", ""),
52 #if CONFIG_IS_ENABLED(UT_UNICODE) && !defined(API_BUILD)
53 U_BOOT_CMD_MKENT(unicode, CONFIG_SYS_MAXARGS, 1, do_ut_unicode, "", ""),
56 U_BOOT_CMD_MKENT(compression, CONFIG_SYS_MAXARGS, 1, do_ut_compression,
61 static int do_ut_all(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
67 for (i = 1; i < ARRAY_SIZE(cmd_ut_sub); i++) {
68 printf("----Running %s tests----\n", cmd_ut_sub[i].name);
69 retval = cmd_ut_sub[i].cmd(cmdtp, flag, 1, &cmd_ut_sub[i].name);
77 static int do_ut(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
84 /* drop initial "ut" arg */
88 cp = find_cmd_tbl(argv[0], cmd_ut_sub, ARRAY_SIZE(cmd_ut_sub));
91 return cp->cmd(cmdtp, flag, argc, argv);
96 #ifdef CONFIG_SYS_LONGHELP
97 static char ut_help_text[] =
98 "all - execute all enabled tests\n"
100 "ut compression - Test compressors and bootm decompression\n"
103 "ut dm [test-name]\n"
106 "ut env [test-name]\n"
108 #ifdef CONFIG_UT_OVERLAY
109 "ut overlay [test-name]\n"
111 #ifdef CONFIG_UT_TIME
112 "ut time - Very basic test of time functions\n"
114 #if defined(CONFIG_UT_UNICODE) && \
115 !defined(CONFIG_SPL_BUILD) && !defined(API_BUILD)
116 "ut unicode [test-name] - test Unicode functions\n"
119 #endif /* CONFIG_SYS_LONGHELP */
122 ut, CONFIG_SYS_MAXARGS, 1, do_ut,
123 "unit tests", ut_help_text