Merge branch '2021-03-12-test-improvements' into next
[platform/kernel/u-boot.git] / test / cmd_ut.c
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * (C) Copyright 2015
4  * Joe Hershberger, National Instruments, joe.hershberger@ni.com
5  */
6
7 #include <common.h>
8 #include <command.h>
9 #include <console.h>
10 #include <test/suites.h>
11 #include <test/test.h>
12 #include <test/ut.h>
13
14 static int do_ut_all(struct cmd_tbl *cmdtp, int flag, int argc,
15                      char *const argv[]);
16
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[])
20 {
21         int ret;
22
23         ret = ut_run_list(name, prefix, tests, n_ents,
24                           argc > 1 ? argv[1] : NULL);
25
26         return ret ? CMD_RET_FAILURE : 0;
27 }
28
29 static struct cmd_tbl cmd_ut_sub[] = {
30         U_BOOT_CMD_MKENT(all, CONFIG_SYS_MAXARGS, 1, do_ut_all, "", ""),
31 #if defined(CONFIG_UT_DM)
32         U_BOOT_CMD_MKENT(dm, CONFIG_SYS_MAXARGS, 1, do_ut_dm, "", ""),
33 #endif
34 #if defined(CONFIG_UT_ENV)
35         U_BOOT_CMD_MKENT(env, CONFIG_SYS_MAXARGS, 1, do_ut_env, "", ""),
36 #endif
37 #ifdef CONFIG_UT_OPTEE
38         U_BOOT_CMD_MKENT(optee, CONFIG_SYS_MAXARGS, 1, do_ut_optee, "", ""),
39 #endif
40 #ifdef CONFIG_UT_OVERLAY
41         U_BOOT_CMD_MKENT(overlay, CONFIG_SYS_MAXARGS, 1, do_ut_overlay, "", ""),
42 #endif
43 #ifdef CONFIG_UT_LIB
44         U_BOOT_CMD_MKENT(lib, CONFIG_SYS_MAXARGS, 1, do_ut_lib, "", ""),
45 #endif
46 #ifdef CONFIG_UT_LOG
47         U_BOOT_CMD_MKENT(log, CONFIG_SYS_MAXARGS, 1, do_ut_log, "", ""),
48 #endif
49         U_BOOT_CMD_MKENT(mem, CONFIG_SYS_MAXARGS, 1, do_ut_mem, "", ""),
50 #ifdef CONFIG_CMD_SETEXPR
51         U_BOOT_CMD_MKENT(setexpr, CONFIG_SYS_MAXARGS, 1, do_ut_setexpr, "",
52                          ""),
53 #endif
54 #ifdef CONFIG_UT_TIME
55         U_BOOT_CMD_MKENT(time, CONFIG_SYS_MAXARGS, 1, do_ut_time, "", ""),
56 #endif
57 #if CONFIG_IS_ENABLED(UT_UNICODE) && !defined(API_BUILD)
58         U_BOOT_CMD_MKENT(unicode, CONFIG_SYS_MAXARGS, 1, do_ut_unicode, "", ""),
59 #endif
60 #ifdef CONFIG_SANDBOX
61         U_BOOT_CMD_MKENT(compression, CONFIG_SYS_MAXARGS, 1, do_ut_compression,
62                          "", ""),
63         U_BOOT_CMD_MKENT(bloblist, CONFIG_SYS_MAXARGS, 1, do_ut_bloblist,
64                          "", ""),
65         U_BOOT_CMD_MKENT(bootm, CONFIG_SYS_MAXARGS, 1, do_ut_bootm, "", ""),
66 #endif
67         U_BOOT_CMD_MKENT(str, CONFIG_SYS_MAXARGS, 1, do_ut_str, "", ""),
68 };
69
70 static int do_ut_all(struct cmd_tbl *cmdtp, int flag, int argc,
71                      char *const argv[])
72 {
73         int i;
74         int retval;
75         int any_fail = 0;
76
77         for (i = 1; i < ARRAY_SIZE(cmd_ut_sub); i++) {
78                 printf("----Running %s tests----\n", cmd_ut_sub[i].name);
79                 retval = cmd_ut_sub[i].cmd(cmdtp, flag, 1, &cmd_ut_sub[i].name);
80                 if (!any_fail)
81                         any_fail = retval;
82         }
83
84         return any_fail;
85 }
86
87 static int do_ut(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
88 {
89         struct cmd_tbl *cp;
90
91         if (argc < 2)
92                 return CMD_RET_USAGE;
93
94         /* drop initial "ut" arg */
95         argc--;
96         argv++;
97
98         cp = find_cmd_tbl(argv[0], cmd_ut_sub, ARRAY_SIZE(cmd_ut_sub));
99
100         if (cp)
101                 return cp->cmd(cmdtp, flag, argc, argv);
102
103         return CMD_RET_USAGE;
104 }
105
106 #ifdef CONFIG_SYS_LONGHELP
107 static char ut_help_text[] =
108         "all - execute all enabled tests\n"
109 #ifdef CONFIG_SANDBOX
110         "ut bloblist - Test bloblist implementation\n"
111         "ut compression - Test compressors and bootm decompression\n"
112 #endif
113 #ifdef CONFIG_UT_DM
114         "ut dm [test-name]\n"
115 #endif
116 #ifdef CONFIG_UT_ENV
117         "ut env [test-name]\n"
118 #endif
119 #ifdef CONFIG_UT_LIB
120         "ut lib [test-name] - test library functions\n"
121 #endif
122 #ifdef CONFIG_UT_LOG
123         "ut log [test-name] - test logging functions\n"
124 #endif
125         "ut mem [test-name] - test memory-related commands\n"
126 #ifdef CONFIG_UT_OPTEE
127         "ut optee [test-name]\n"
128 #endif
129 #ifdef CONFIG_UT_OVERLAY
130         "ut overlay [test-name]\n"
131 #endif
132         "ut setexpr [test-name] - test setexpr command\n"
133 #ifdef CONFIG_SANDBOX
134         "ut str - Basic test of string functions\n"
135 #endif
136 #ifdef CONFIG_UT_TIME
137         "ut time - Very basic test of time functions\n"
138 #endif
139 #if defined(CONFIG_UT_UNICODE) && \
140         !defined(CONFIG_SPL_BUILD) && !defined(API_BUILD)
141         "ut unicode [test-name] - test Unicode functions\n"
142 #endif
143         ;
144 #endif /* CONFIG_SYS_LONGHELP */
145
146 U_BOOT_CMD(
147         ut, CONFIG_SYS_MAXARGS, 1, do_ut,
148         "unit tests", ut_help_text
149 );