1 // SPDX-License-Identifier: GPL-2.0
10 #include <test/suites.h>
11 #include <test/test.h>
13 static int do_ut_all(struct cmd_tbl *cmdtp, int flag, int argc,
16 int cmd_ut_category(const char *name, const char *prefix,
17 struct unit_test *tests, int n_ents,
18 int argc, char *const argv[])
20 struct unit_test_state uts = { .fail_count = 0 };
21 struct unit_test *test;
22 int prefix_len = prefix ? strlen(prefix) : 0;
25 printf("Running %d %s tests\n", n_ents, name);
27 for (test = tests; test < tests + n_ents; test++) {
28 const char *test_name = test->name;
30 /* Remove the prefix */
31 if (prefix && !strncmp(test_name, prefix, prefix_len))
32 test_name += prefix_len;
34 if (argc > 1 && strcmp(argv[1], test_name))
36 printf("Test: %s\n", test->name);
38 if (test->flags & UT_TESTF_CONSOLE_REC) {
39 int ret = console_record_reset_enable();
42 printf("Skipping: Console recording disabled\n");
47 uts.start = mallinfo();
52 printf("Failures: %d\n", uts.fail_count);
54 return uts.fail_count ? CMD_RET_FAILURE : 0;
57 static struct cmd_tbl cmd_ut_sub[] = {
58 U_BOOT_CMD_MKENT(all, CONFIG_SYS_MAXARGS, 1, do_ut_all, "", ""),
59 #if defined(CONFIG_UT_DM)
60 U_BOOT_CMD_MKENT(dm, CONFIG_SYS_MAXARGS, 1, do_ut_dm, "", ""),
62 #if defined(CONFIG_UT_ENV)
63 U_BOOT_CMD_MKENT(env, CONFIG_SYS_MAXARGS, 1, do_ut_env, "", ""),
65 #ifdef CONFIG_UT_OPTEE
66 U_BOOT_CMD_MKENT(optee, CONFIG_SYS_MAXARGS, 1, do_ut_optee, "", ""),
68 #ifdef CONFIG_UT_OVERLAY
69 U_BOOT_CMD_MKENT(overlay, CONFIG_SYS_MAXARGS, 1, do_ut_overlay, "", ""),
72 U_BOOT_CMD_MKENT(lib, CONFIG_SYS_MAXARGS, 1, do_ut_lib, "", ""),
75 U_BOOT_CMD_MKENT(log, CONFIG_SYS_MAXARGS, 1, do_ut_log, "", ""),
77 U_BOOT_CMD_MKENT(mem, CONFIG_SYS_MAXARGS, 1, do_ut_mem, "", ""),
78 #ifdef CONFIG_CMD_SETEXPR
79 U_BOOT_CMD_MKENT(setexpr, CONFIG_SYS_MAXARGS, 1, do_ut_setexpr, "",
83 U_BOOT_CMD_MKENT(time, CONFIG_SYS_MAXARGS, 1, do_ut_time, "", ""),
85 #if CONFIG_IS_ENABLED(UT_UNICODE) && !defined(API_BUILD)
86 U_BOOT_CMD_MKENT(unicode, CONFIG_SYS_MAXARGS, 1, do_ut_unicode, "", ""),
89 U_BOOT_CMD_MKENT(compression, CONFIG_SYS_MAXARGS, 1, do_ut_compression,
91 U_BOOT_CMD_MKENT(bloblist, CONFIG_SYS_MAXARGS, 1, do_ut_bloblist,
93 U_BOOT_CMD_MKENT(bootm, CONFIG_SYS_MAXARGS, 1, do_ut_bootm, "", ""),
95 U_BOOT_CMD_MKENT(str, CONFIG_SYS_MAXARGS, 1, do_ut_str, "", ""),
98 static int do_ut_all(struct cmd_tbl *cmdtp, int flag, int argc,
105 for (i = 1; i < ARRAY_SIZE(cmd_ut_sub); i++) {
106 printf("----Running %s tests----\n", cmd_ut_sub[i].name);
107 retval = cmd_ut_sub[i].cmd(cmdtp, flag, 1, &cmd_ut_sub[i].name);
115 static int do_ut(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
120 return CMD_RET_USAGE;
122 /* drop initial "ut" arg */
126 cp = find_cmd_tbl(argv[0], cmd_ut_sub, ARRAY_SIZE(cmd_ut_sub));
129 return cp->cmd(cmdtp, flag, argc, argv);
131 return CMD_RET_USAGE;
134 #ifdef CONFIG_SYS_LONGHELP
135 static char ut_help_text[] =
136 "all - execute all enabled tests\n"
137 #ifdef CONFIG_SANDBOX
138 "ut bloblist - Test bloblist implementation\n"
139 "ut compression - Test compressors and bootm decompression\n"
142 "ut dm [test-name]\n"
145 "ut env [test-name]\n"
148 "ut lib [test-name] - test library functions\n"
151 "ut log [test-name] - test logging functions\n"
153 "ut mem [test-name] - test memory-related commands\n"
154 #ifdef CONFIG_UT_OPTEE
155 "ut optee [test-name]\n"
157 #ifdef CONFIG_UT_OVERLAY
158 "ut overlay [test-name]\n"
160 "ut setexpr [test-name] - test setexpr command\n"
161 #ifdef CONFIG_SANDBOX
162 "ut str - Basic test of string functions\n"
164 #ifdef CONFIG_UT_TIME
165 "ut time - Very basic test of time functions\n"
167 #if defined(CONFIG_UT_UNICODE) && \
168 !defined(CONFIG_SPL_BUILD) && !defined(API_BUILD)
169 "ut unicode [test-name] - test Unicode functions\n"
172 #endif /* CONFIG_SYS_LONGHELP */
175 ut, CONFIG_SYS_MAXARGS, 1, do_ut,
176 "unit tests", ut_help_text