3 * Joe Hershberger, National Instruments, joe.hershberger@ni.com
5 * SPDX-License-Identifier: GPL-2.0
10 #include <test/suites.h>
11 #include <test/test.h>
13 static int do_ut_all(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
15 int cmd_ut_category(const char *name, 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;
22 printf("Running %d %s tests\n", n_ents, name);
24 for (test = tests; test < tests + n_ents; test++) {
25 if (argc > 1 && strcmp(argv[1], test->name))
27 printf("Test: %s\n", test->name);
29 uts.start = mallinfo();
34 printf("Failures: %d\n", uts.fail_count);
36 return uts.fail_count ? CMD_RET_FAILURE : 0;
39 static cmd_tbl_t cmd_ut_sub[] = {
40 U_BOOT_CMD_MKENT(all, CONFIG_SYS_MAXARGS, 1, do_ut_all, "", ""),
41 #if defined(CONFIG_UT_DM)
42 U_BOOT_CMD_MKENT(dm, CONFIG_SYS_MAXARGS, 1, do_ut_dm, "", ""),
44 #if defined(CONFIG_UT_ENV)
45 U_BOOT_CMD_MKENT(env, CONFIG_SYS_MAXARGS, 1, do_ut_env, "", ""),
47 #ifdef CONFIG_UT_OVERLAY
48 U_BOOT_CMD_MKENT(overlay, CONFIG_SYS_MAXARGS, 1, do_ut_overlay, "", ""),
51 U_BOOT_CMD_MKENT(time, CONFIG_SYS_MAXARGS, 1, do_ut_time, "", ""),
54 U_BOOT_CMD_MKENT(compression, CONFIG_SYS_MAXARGS, 1, do_ut_compression,
59 static int do_ut_all(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
65 for (i = 1; i < ARRAY_SIZE(cmd_ut_sub); i++) {
66 printf("----Running %s tests----\n", cmd_ut_sub[i].name);
67 retval = cmd_ut_sub[i].cmd(cmdtp, flag, 1, &cmd_ut_sub[i].name);
75 static int do_ut(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
82 /* drop initial "ut" arg */
86 cp = find_cmd_tbl(argv[0], cmd_ut_sub, ARRAY_SIZE(cmd_ut_sub));
89 return cp->cmd(cmdtp, flag, argc, argv);
94 #ifdef CONFIG_SYS_LONGHELP
95 static char ut_help_text[] =
96 "all - execute all enabled tests\n"
101 "ut env [test-name]\n"
103 #ifdef CONFIG_UT_OVERLAY
104 "ut overlay [test-name]\n"
106 #ifdef CONFIG_UT_TIME
107 "ut time - Very basic test of time functions\n"
109 #ifdef CONFIG_SANDBOX
110 "ut compression - Test compressors and bootm decompression\n"
116 ut, CONFIG_SYS_MAXARGS, 1, do_ut,
117 "unit tests", ut_help_text