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(struct cmd_tbl *cmdtp, int flag, int argc,
15 int cmd_ut_category(const char *name, const char *prefix,
16 struct unit_test *tests, int n_ents,
17 int argc, char *const argv[])
19 struct unit_test_state uts = { .fail_count = 0 };
20 struct unit_test *test;
21 int prefix_len = prefix ? strlen(prefix) : 0;
24 printf("Running %d %s tests\n", n_ents, name);
26 for (test = tests; test < tests + n_ents; test++) {
27 const char *test_name = test->name;
29 /* Remove the prefix */
30 if (prefix && !strncmp(test_name, prefix, prefix_len))
31 test_name += prefix_len;
33 if (argc > 1 && strcmp(argv[1], test_name))
35 printf("Test: %s\n", test->name);
37 uts.start = mallinfo();
42 printf("Failures: %d\n", uts.fail_count);
44 return uts.fail_count ? CMD_RET_FAILURE : 0;
47 static struct cmd_tbl cmd_ut_sub[] = {
48 U_BOOT_CMD_MKENT(all, CONFIG_SYS_MAXARGS, 1, do_ut_all, "", ""),
49 #if defined(CONFIG_UT_DM)
50 U_BOOT_CMD_MKENT(dm, CONFIG_SYS_MAXARGS, 1, do_ut_dm, "", ""),
52 #if defined(CONFIG_UT_ENV)
53 U_BOOT_CMD_MKENT(env, CONFIG_SYS_MAXARGS, 1, do_ut_env, "", ""),
55 #ifdef CONFIG_UT_OPTEE
56 U_BOOT_CMD_MKENT(optee, CONFIG_SYS_MAXARGS, 1, do_ut_optee, "", ""),
58 #ifdef CONFIG_UT_OVERLAY
59 U_BOOT_CMD_MKENT(overlay, CONFIG_SYS_MAXARGS, 1, do_ut_overlay, "", ""),
62 U_BOOT_CMD_MKENT(lib, CONFIG_SYS_MAXARGS, 1, do_ut_lib, "", ""),
65 U_BOOT_CMD_MKENT(log, CONFIG_SYS_MAXARGS, 1, do_ut_log, "", ""),
68 U_BOOT_CMD_MKENT(time, CONFIG_SYS_MAXARGS, 1, do_ut_time, "", ""),
70 #if CONFIG_IS_ENABLED(UT_UNICODE) && !defined(API_BUILD)
71 U_BOOT_CMD_MKENT(unicode, CONFIG_SYS_MAXARGS, 1, do_ut_unicode, "", ""),
74 U_BOOT_CMD_MKENT(compression, CONFIG_SYS_MAXARGS, 1, do_ut_compression,
76 U_BOOT_CMD_MKENT(bloblist, CONFIG_SYS_MAXARGS, 1, do_ut_bloblist,
78 U_BOOT_CMD_MKENT(str, CONFIG_SYS_MAXARGS, 1, do_ut_str,
83 static int do_ut_all(struct cmd_tbl *cmdtp, int flag, int argc,
90 for (i = 1; i < ARRAY_SIZE(cmd_ut_sub); i++) {
91 printf("----Running %s tests----\n", cmd_ut_sub[i].name);
92 retval = cmd_ut_sub[i].cmd(cmdtp, flag, 1, &cmd_ut_sub[i].name);
100 static int do_ut(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
105 return CMD_RET_USAGE;
107 /* drop initial "ut" arg */
111 cp = find_cmd_tbl(argv[0], cmd_ut_sub, ARRAY_SIZE(cmd_ut_sub));
114 return cp->cmd(cmdtp, flag, argc, argv);
116 return CMD_RET_USAGE;
119 #ifdef CONFIG_SYS_LONGHELP
120 static char ut_help_text[] =
121 "all - execute all enabled tests\n"
122 #ifdef CONFIG_SANDBOX
123 "ut bloblist - Test bloblist implementation\n"
124 "ut compression - Test compressors and bootm decompression\n"
127 "ut dm [test-name]\n"
130 "ut env [test-name]\n"
133 "ut lib [test-name] - test library functions\n"
136 "ut log [test-name] - test logging functions\n"
138 #ifdef CONFIG_UT_OPTEE
139 "ut optee [test-name]\n"
141 #ifdef CONFIG_UT_OVERLAY
142 "ut overlay [test-name]\n"
144 #ifdef CONFIG_SANDBOX
145 "ut str - Basic test of string functions\n"
147 #ifdef CONFIG_UT_TIME
148 "ut time - Very basic test of time functions\n"
150 #if defined(CONFIG_UT_UNICODE) && \
151 !defined(CONFIG_SPL_BUILD) && !defined(API_BUILD)
152 "ut unicode [test-name] - test Unicode functions\n"
155 #endif /* CONFIG_SYS_LONGHELP */
158 ut, CONFIG_SYS_MAXARGS, 1, do_ut,
159 "unit tests", ut_help_text