1 // SPDX-License-Identifier: GPL-2.0
4 * Joe Hershberger, National Instruments, joe.hershberger@ni.com
10 #include <test/suites.h>
11 #include <test/test.h>
14 static int do_ut_all(struct cmd_tbl *cmdtp, int flag, int argc,
17 int cmd_ut_category(const char *name, const char *prefix,
18 struct unit_test *tests, int n_ents,
19 int argc, char *const argv[])
23 ret = ut_run_list(name, prefix, tests, n_ents,
24 argc > 1 ? argv[1] : NULL);
26 return ret ? CMD_RET_FAILURE : 0;
29 static struct cmd_tbl cmd_ut_sub[] = {
30 U_BOOT_CMD_MKENT(all, CONFIG_SYS_MAXARGS, 1, do_ut_all, "", ""),
31 U_BOOT_CMD_MKENT(common, CONFIG_SYS_MAXARGS, 1, do_ut_common, "", ""),
32 #if defined(CONFIG_UT_DM)
33 U_BOOT_CMD_MKENT(dm, CONFIG_SYS_MAXARGS, 1, do_ut_dm, "", ""),
35 #if defined(CONFIG_UT_ENV)
36 U_BOOT_CMD_MKENT(env, CONFIG_SYS_MAXARGS, 1, do_ut_env, "", ""),
38 #ifdef CONFIG_UT_OPTEE
39 U_BOOT_CMD_MKENT(optee, CONFIG_SYS_MAXARGS, 1, do_ut_optee, "", ""),
41 #ifdef CONFIG_UT_OVERLAY
42 U_BOOT_CMD_MKENT(overlay, CONFIG_SYS_MAXARGS, 1, do_ut_overlay, "", ""),
45 U_BOOT_CMD_MKENT(lib, CONFIG_SYS_MAXARGS, 1, do_ut_lib, "", ""),
48 U_BOOT_CMD_MKENT(log, CONFIG_SYS_MAXARGS, 1, do_ut_log, "", ""),
50 U_BOOT_CMD_MKENT(mem, CONFIG_SYS_MAXARGS, 1, do_ut_mem, "", ""),
51 #ifdef CONFIG_CMD_SETEXPR
52 U_BOOT_CMD_MKENT(setexpr, CONFIG_SYS_MAXARGS, 1, do_ut_setexpr, "",
55 U_BOOT_CMD_MKENT(print, CONFIG_SYS_MAXARGS, 1, do_ut_print, "", ""),
57 U_BOOT_CMD_MKENT(time, CONFIG_SYS_MAXARGS, 1, do_ut_time, "", ""),
59 #if CONFIG_IS_ENABLED(UT_UNICODE) && !defined(API_BUILD)
60 U_BOOT_CMD_MKENT(unicode, CONFIG_SYS_MAXARGS, 1, do_ut_unicode, "", ""),
63 U_BOOT_CMD_MKENT(compression, CONFIG_SYS_MAXARGS, 1, do_ut_compression,
65 U_BOOT_CMD_MKENT(bloblist, CONFIG_SYS_MAXARGS, 1, do_ut_bloblist,
67 U_BOOT_CMD_MKENT(bootm, CONFIG_SYS_MAXARGS, 1, do_ut_bootm, "", ""),
69 U_BOOT_CMD_MKENT(str, CONFIG_SYS_MAXARGS, 1, do_ut_str, "", ""),
70 #ifdef CONFIG_CMD_ADDRMAP
71 U_BOOT_CMD_MKENT(addrmap, CONFIG_SYS_MAXARGS, 1, do_ut_addrmap, "", ""),
75 static int do_ut_all(struct cmd_tbl *cmdtp, int flag, int argc,
82 for (i = 1; i < ARRAY_SIZE(cmd_ut_sub); i++) {
83 printf("----Running %s tests----\n", cmd_ut_sub[i].name);
84 retval = cmd_ut_sub[i].cmd(cmdtp, flag, 1, &cmd_ut_sub[i].name);
92 static int do_ut(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
99 /* drop initial "ut" arg */
103 cp = find_cmd_tbl(argv[0], cmd_ut_sub, ARRAY_SIZE(cmd_ut_sub));
106 return cp->cmd(cmdtp, flag, argc, argv);
108 return CMD_RET_USAGE;
111 #ifdef CONFIG_SYS_LONGHELP
112 static char ut_help_text[] =
113 "all - execute all enabled tests\n"
114 #ifdef CONFIG_SANDBOX
115 "ut bloblist - Test bloblist implementation\n"
116 "ut compression - Test compressors and bootm decompression\n"
119 "ut dm [test-name]\n"
122 "ut env [test-name]\n"
125 "ut lib [test-name] - test library functions\n"
128 "ut log [test-name] - test logging functions\n"
130 "ut mem [test-name] - test memory-related commands\n"
131 #ifdef CONFIG_UT_OPTEE
132 "ut optee [test-name]\n"
134 #ifdef CONFIG_UT_OVERLAY
135 "ut overlay [test-name]\n"
137 "ut print [test-name] - test printing\n"
138 "ut setexpr [test-name] - test setexpr command\n"
139 #ifdef CONFIG_SANDBOX
140 "ut str - Basic test of string functions\n"
142 #ifdef CONFIG_UT_TIME
143 "ut time - Very basic test of time functions\n"
145 #if defined(CONFIG_UT_UNICODE) && \
146 !defined(CONFIG_SPL_BUILD) && !defined(API_BUILD)
147 "ut unicode [test-name] - test Unicode functions\n"
149 #ifdef CONFIG_CMD_ADDRMAP
150 "ut addrmap - Very basic test of addrmap command\n"
153 #endif /* CONFIG_SYS_LONGHELP */
156 ut, CONFIG_SYS_MAXARGS, 1, do_ut,
157 "unit tests", ut_help_text