1 // SPDX-License-Identifier: GPL-2.0
4 * Joe Hershberger, National Instruments, joe.hershberger@ni.com
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, const char *prefix,
15 struct unit_test *tests, int n_ents,
16 int argc, char * const argv[])
18 struct unit_test_state uts = { .fail_count = 0 };
19 struct unit_test *test;
20 int prefix_len = prefix ? strlen(prefix) : 0;
23 printf("Running %d %s tests\n", n_ents, name);
25 for (test = tests; test < tests + n_ents; test++) {
26 const char *test_name = test->name;
28 /* Remove the prefix */
29 if (prefix && !strncmp(test_name, prefix, prefix_len))
30 test_name += prefix_len;
32 if (argc > 1 && strcmp(argv[1], test_name))
34 printf("Test: %s\n", test->name);
36 uts.start = mallinfo();
41 printf("Failures: %d\n", uts.fail_count);
43 return uts.fail_count ? CMD_RET_FAILURE : 0;
46 static cmd_tbl_t cmd_ut_sub[] = {
47 U_BOOT_CMD_MKENT(all, CONFIG_SYS_MAXARGS, 1, do_ut_all, "", ""),
48 #if defined(CONFIG_UT_DM)
49 U_BOOT_CMD_MKENT(dm, CONFIG_SYS_MAXARGS, 1, do_ut_dm, "", ""),
51 #if defined(CONFIG_UT_ENV)
52 U_BOOT_CMD_MKENT(env, CONFIG_SYS_MAXARGS, 1, do_ut_env, "", ""),
54 #ifdef CONFIG_UT_OPTEE
55 U_BOOT_CMD_MKENT(optee, CONFIG_SYS_MAXARGS, 1, do_ut_optee, "", ""),
57 #ifdef CONFIG_UT_OVERLAY
58 U_BOOT_CMD_MKENT(overlay, CONFIG_SYS_MAXARGS, 1, do_ut_overlay, "", ""),
61 U_BOOT_CMD_MKENT(lib, CONFIG_SYS_MAXARGS, 1, do_ut_lib, "", ""),
64 U_BOOT_CMD_MKENT(log, CONFIG_SYS_MAXARGS, 1, do_ut_log, "", ""),
67 U_BOOT_CMD_MKENT(time, CONFIG_SYS_MAXARGS, 1, do_ut_time, "", ""),
69 #if CONFIG_IS_ENABLED(UT_UNICODE) && !defined(API_BUILD)
70 U_BOOT_CMD_MKENT(unicode, CONFIG_SYS_MAXARGS, 1, do_ut_unicode, "", ""),
73 U_BOOT_CMD_MKENT(compression, CONFIG_SYS_MAXARGS, 1, do_ut_compression,
75 U_BOOT_CMD_MKENT(bloblist, CONFIG_SYS_MAXARGS, 1, do_ut_bloblist,
77 U_BOOT_CMD_MKENT(str, CONFIG_SYS_MAXARGS, 1, do_ut_str,
82 static int do_ut_all(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
88 for (i = 1; i < ARRAY_SIZE(cmd_ut_sub); i++) {
89 printf("----Running %s tests----\n", cmd_ut_sub[i].name);
90 retval = cmd_ut_sub[i].cmd(cmdtp, flag, 1, &cmd_ut_sub[i].name);
98 static int do_ut(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
103 return CMD_RET_USAGE;
105 /* drop initial "ut" arg */
109 cp = find_cmd_tbl(argv[0], cmd_ut_sub, ARRAY_SIZE(cmd_ut_sub));
112 return cp->cmd(cmdtp, flag, argc, argv);
114 return CMD_RET_USAGE;
117 #ifdef CONFIG_SYS_LONGHELP
118 static char ut_help_text[] =
119 "all - execute all enabled tests\n"
120 #ifdef CONFIG_SANDBOX
121 "ut bloblist - Test bloblist implementation\n"
122 "ut compression - Test compressors and bootm decompression\n"
125 "ut dm [test-name]\n"
128 "ut env [test-name]\n"
131 "ut lib [test-name] - test library functions\n"
134 "ut log [test-name] - test logging functions\n"
136 #ifdef CONFIG_UT_OPTEE
137 "ut optee [test-name]\n"
139 #ifdef CONFIG_UT_OVERLAY
140 "ut overlay [test-name]\n"
142 #ifdef CONFIG_SANDBOX
143 "ut str - Basic test of string functions\n"
145 #ifdef CONFIG_UT_TIME
146 "ut time - Very basic test of time functions\n"
148 #if defined(CONFIG_UT_UNICODE) && \
149 !defined(CONFIG_SPL_BUILD) && !defined(API_BUILD)
150 "ut unicode [test-name] - test Unicode functions\n"
153 #endif /* CONFIG_SYS_LONGHELP */
156 ut, CONFIG_SYS_MAXARGS, 1, do_ut,
157 "unit tests", ut_help_text