1 // SPDX-License-Identifier: GPL-2.0
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 static int do_ut_info(struct cmd_tbl *cmdtp, int flag, int argc,
20 int cmd_ut_category(const char *name, const char *prefix,
21 struct unit_test *tests, int n_ents,
22 int argc, char *const argv[])
24 const char *test_insert = NULL;
25 int runs_per_text = 1;
26 bool force_run = false;
29 while (argc > 1 && *argv[1] == '-') {
30 const char *str = argv[1];
34 runs_per_text = dectoul(str + 2, NULL);
40 test_insert = str + 2;
47 ret = ut_run_list(name, prefix, tests, n_ents,
48 cmd_arg1(argc, argv), runs_per_text, force_run,
51 return ret ? CMD_RET_FAILURE : 0;
54 static struct cmd_tbl cmd_ut_sub[] = {
55 U_BOOT_CMD_MKENT(all, CONFIG_SYS_MAXARGS, 1, do_ut_all, "", ""),
56 U_BOOT_CMD_MKENT(info, 1, 1, do_ut_info, "", ""),
58 U_BOOT_CMD_MKENT(bdinfo, CONFIG_SYS_MAXARGS, 1, do_ut_bdinfo, "", ""),
60 #ifdef CONFIG_UT_BOOTSTD
61 U_BOOT_CMD_MKENT(bootstd, CONFIG_SYS_MAXARGS, 1, do_ut_bootstd,
65 U_BOOT_CMD_MKENT(cmd, CONFIG_SYS_MAXARGS, 1, do_ut_cmd, "", ""),
67 U_BOOT_CMD_MKENT(common, CONFIG_SYS_MAXARGS, 1, do_ut_common, "", ""),
68 #if defined(CONFIG_UT_DM)
69 U_BOOT_CMD_MKENT(dm, CONFIG_SYS_MAXARGS, 1, do_ut_dm, "", ""),
71 #if defined(CONFIG_UT_ENV)
72 U_BOOT_CMD_MKENT(env, CONFIG_SYS_MAXARGS, 1, do_ut_env, "", ""),
74 U_BOOT_CMD_MKENT(exit, CONFIG_SYS_MAXARGS, 1, do_ut_exit, "", ""),
76 U_BOOT_CMD_MKENT(fdt, CONFIG_SYS_MAXARGS, 1, do_ut_fdt, "", ""),
78 #ifdef CONFIG_CONSOLE_TRUETYPE
79 U_BOOT_CMD_MKENT(font, CONFIG_SYS_MAXARGS, 1, do_ut_font, "", ""),
81 #ifdef CONFIG_UT_OPTEE
82 U_BOOT_CMD_MKENT(optee, CONFIG_SYS_MAXARGS, 1, do_ut_optee, "", ""),
84 #ifdef CONFIG_UT_OVERLAY
85 U_BOOT_CMD_MKENT(overlay, CONFIG_SYS_MAXARGS, 1, do_ut_overlay, "", ""),
88 U_BOOT_CMD_MKENT(lib, CONFIG_SYS_MAXARGS, 1, do_ut_lib, "", ""),
91 U_BOOT_CMD_MKENT(log, CONFIG_SYS_MAXARGS, 1, do_ut_log, "", ""),
93 #if defined(CONFIG_SANDBOX) && defined(CONFIG_CMD_MBR) && defined(CONFIG_CMD_MMC) \
94 && defined(CONFIG_MMC_SANDBOX) && defined(CONFIG_MMC_WRITE)
95 U_BOOT_CMD_MKENT(mbr, CONFIG_SYS_MAXARGS, 1, do_ut_mbr, "", ""),
97 U_BOOT_CMD_MKENT(mem, CONFIG_SYS_MAXARGS, 1, do_ut_mem, "", ""),
98 #if defined(CONFIG_SANDBOX) && defined(CONFIG_CMD_SETEXPR)
99 U_BOOT_CMD_MKENT(setexpr, CONFIG_SYS_MAXARGS, 1, do_ut_setexpr, "",
102 U_BOOT_CMD_MKENT(print, CONFIG_SYS_MAXARGS, 1, do_ut_print, "", ""),
103 #ifdef CONFIG_UT_TIME
104 U_BOOT_CMD_MKENT(time, CONFIG_SYS_MAXARGS, 1, do_ut_time, "", ""),
106 #if CONFIG_IS_ENABLED(UT_UNICODE) && !defined(API_BUILD)
107 U_BOOT_CMD_MKENT(unicode, CONFIG_SYS_MAXARGS, 1, do_ut_unicode, "", ""),
109 #ifdef CONFIG_MEASURED_BOOT
110 U_BOOT_CMD_MKENT(measurement, CONFIG_SYS_MAXARGS, 1, do_ut_measurement,
113 #ifdef CONFIG_SANDBOX
114 U_BOOT_CMD_MKENT(compression, CONFIG_SYS_MAXARGS, 1, do_ut_compression,
116 U_BOOT_CMD_MKENT(bloblist, CONFIG_SYS_MAXARGS, 1, do_ut_bloblist,
118 U_BOOT_CMD_MKENT(bootm, CONFIG_SYS_MAXARGS, 1, do_ut_bootm, "", ""),
120 U_BOOT_CMD_MKENT(str, CONFIG_SYS_MAXARGS, 1, do_ut_str, "", ""),
121 #ifdef CONFIG_CMD_ADDRMAP
122 U_BOOT_CMD_MKENT(addrmap, CONFIG_SYS_MAXARGS, 1, do_ut_addrmap, "", ""),
124 #ifdef CONFIG_CMD_LOADM
125 U_BOOT_CMD_MKENT(loadm, CONFIG_SYS_MAXARGS, 1, do_ut_loadm, "", ""),
127 #ifdef CONFIG_CMD_PCI_MPS
128 U_BOOT_CMD_MKENT(pci_mps, CONFIG_SYS_MAXARGS, 1, do_ut_pci_mps, "", ""),
130 #ifdef CONFIG_CMD_SEAMA
131 U_BOOT_CMD_MKENT(seama, CONFIG_SYS_MAXARGS, 1, do_ut_seama, "", ""),
135 static int do_ut_all(struct cmd_tbl *cmdtp, int flag, int argc,
142 for (i = 1; i < ARRAY_SIZE(cmd_ut_sub); i++) {
143 printf("----Running %s tests----\n", cmd_ut_sub[i].name);
144 retval = cmd_ut_sub[i].cmd(cmdtp, flag, 1, &cmd_ut_sub[i].name);
152 static int do_ut_info(struct cmd_tbl *cmdtp, int flag, int argc,
155 printf("Test suites: %d\n", (int)ARRAY_SIZE(cmd_ut_sub));
156 printf("Total tests: %d\n", (int)UNIT_TEST_ALL_COUNT());
161 static int do_ut(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
166 return CMD_RET_USAGE;
168 /* drop initial "ut" arg */
172 cp = find_cmd_tbl(argv[0], cmd_ut_sub, ARRAY_SIZE(cmd_ut_sub));
175 return cp->cmd(cmdtp, flag, argc, argv);
177 return CMD_RET_USAGE;
181 "[-r] [-f] [<suite>] - run unit tests\n"
182 " -r<runs> Number of times to run each test\n"
183 " -f Force 'manual' tests to run as well\n"
184 " <suite> Test suite to run, or all\n"
186 "\nOptions for <suite>:"
187 "\nall - execute all enabled tests"
188 "\ninfo - show info about tests"
189 #ifdef CONFIG_CMD_ADDRMAP
190 "\naddrmap - very basic test of addrmap command"
192 #ifdef CONFIG_CMD_BDI
193 "\nbdinfo - bdinfo command"
195 #ifdef CONFIG_SANDBOX
196 "\nbloblist - bloblist implementation"
198 #ifdef CONFIG_BOOTSTD
199 "\nbootstd - standard boot implementation"
201 #ifdef CONFIG_CMDLINE
202 "\ncmd - test various commands"
204 #ifdef CONFIG_SANDBOX
205 "\ncompression - compressors and bootm decompression"
208 "\ndm - driver model"
211 "\nenv - environment"
213 #ifdef CONFIG_CMD_FDT
214 "\nfdt - fdt command"
216 #ifdef CONFIG_CONSOLE_TRUETYPE
217 "\nfont - font command"
219 #ifdef CONFIG_CMD_LOADM
220 "\nloadm - loadm command parameters and loading memory blob"
223 "\nlib - library functions"
226 "\nlog - logging functions"
228 "\nmem - memory-related commands"
229 #ifdef CONFIG_UT_OPTEE
230 "\noptee - test OP-TEE"
232 #ifdef CONFIG_UT_OVERLAY
233 "\noverlay - device tree overlays"
235 #ifdef CONFIG_CMD_PCI_MPS
236 "\npci_mps - PCI Express Maximum Payload Size"
238 "\nprint - printing things to the console"
239 "\nsetexpr - setexpr command"
240 #ifdef CONFIG_SANDBOX
241 "\nstr - basic test of string functions"
243 #ifdef CONFIG_CMD_SEAMA
244 "\nseama - seama command parameters loading and decoding"
246 #ifdef CONFIG_UT_TIME
247 "\ntime - very basic test of time functions"
249 #if defined(CONFIG_UT_UNICODE) && \
250 !defined(CONFIG_SPL_BUILD) && !defined(API_BUILD)
251 "\nunicode - Unicode functions"
256 ut, CONFIG_SYS_MAXARGS, 1, do_ut,
257 "unit tests", ut_help_text