Merge branch '2020-12-07-bootm-and-spl-atf-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
13 static int do_ut_all(struct cmd_tbl *cmdtp, int flag, int argc,
14                      char *const argv[]);
15
16 int cmd_ut_category(const char *name, const char *prefix,
17                     struct unit_test *tests, int n_ents,
18                     int argc, char *const argv[])
19 {
20         struct unit_test_state uts = { .fail_count = 0 };
21         struct unit_test *test;
22         int prefix_len = prefix ? strlen(prefix) : 0;
23
24         if (argc == 1)
25                 printf("Running %d %s tests\n", n_ents, name);
26
27         for (test = tests; test < tests + n_ents; test++) {
28                 const char *test_name = test->name;
29
30                 /* Remove the prefix */
31                 if (prefix && !strncmp(test_name, prefix, prefix_len))
32                         test_name += prefix_len;
33
34                 if (argc > 1 && strcmp(argv[1], test_name))
35                         continue;
36                 printf("Test: %s\n", test->name);
37
38                 if (test->flags & UT_TESTF_CONSOLE_REC) {
39                         int ret = console_record_reset_enable();
40
41                         if (ret) {
42                                 printf("Skipping: Console recording disabled\n");
43                                 continue;
44                         }
45                 }
46
47                 uts.start = mallinfo();
48
49                 test->func(&uts);
50         }
51
52         printf("Failures: %d\n", uts.fail_count);
53
54         return uts.fail_count ? CMD_RET_FAILURE : 0;
55 }
56
57 static struct cmd_tbl cmd_ut_sub[] = {
58         U_BOOT_CMD_MKENT(all, CONFIG_SYS_MAXARGS, 1, do_ut_all, "", ""),
59 #if defined(CONFIG_UT_DM)
60         U_BOOT_CMD_MKENT(dm, CONFIG_SYS_MAXARGS, 1, do_ut_dm, "", ""),
61 #endif
62 #if defined(CONFIG_UT_ENV)
63         U_BOOT_CMD_MKENT(env, CONFIG_SYS_MAXARGS, 1, do_ut_env, "", ""),
64 #endif
65 #ifdef CONFIG_UT_OPTEE
66         U_BOOT_CMD_MKENT(optee, CONFIG_SYS_MAXARGS, 1, do_ut_optee, "", ""),
67 #endif
68 #ifdef CONFIG_UT_OVERLAY
69         U_BOOT_CMD_MKENT(overlay, CONFIG_SYS_MAXARGS, 1, do_ut_overlay, "", ""),
70 #endif
71 #ifdef CONFIG_UT_LIB
72         U_BOOT_CMD_MKENT(lib, CONFIG_SYS_MAXARGS, 1, do_ut_lib, "", ""),
73 #endif
74 #ifdef CONFIG_UT_LOG
75         U_BOOT_CMD_MKENT(log, CONFIG_SYS_MAXARGS, 1, do_ut_log, "", ""),
76 #endif
77         U_BOOT_CMD_MKENT(mem, CONFIG_SYS_MAXARGS, 1, do_ut_mem, "", ""),
78         U_BOOT_CMD_MKENT(setexpr, CONFIG_SYS_MAXARGS, 1, do_ut_setexpr, "",
79                          ""),
80 #ifdef CONFIG_UT_TIME
81         U_BOOT_CMD_MKENT(time, CONFIG_SYS_MAXARGS, 1, do_ut_time, "", ""),
82 #endif
83 #if CONFIG_IS_ENABLED(UT_UNICODE) && !defined(API_BUILD)
84         U_BOOT_CMD_MKENT(unicode, CONFIG_SYS_MAXARGS, 1, do_ut_unicode, "", ""),
85 #endif
86 #ifdef CONFIG_SANDBOX
87         U_BOOT_CMD_MKENT(compression, CONFIG_SYS_MAXARGS, 1, do_ut_compression,
88                          "", ""),
89         U_BOOT_CMD_MKENT(bloblist, CONFIG_SYS_MAXARGS, 1, do_ut_bloblist,
90                          "", ""),
91         U_BOOT_CMD_MKENT(bootm, CONFIG_SYS_MAXARGS, 1, do_ut_bootm, "", ""),
92         U_BOOT_CMD_MKENT(str, CONFIG_SYS_MAXARGS, 1, do_ut_str,
93                          "", ""),
94 #endif
95 };
96
97 static int do_ut_all(struct cmd_tbl *cmdtp, int flag, int argc,
98                      char *const argv[])
99 {
100         int i;
101         int retval;
102         int any_fail = 0;
103
104         for (i = 1; i < ARRAY_SIZE(cmd_ut_sub); i++) {
105                 printf("----Running %s tests----\n", cmd_ut_sub[i].name);
106                 retval = cmd_ut_sub[i].cmd(cmdtp, flag, 1, &cmd_ut_sub[i].name);
107                 if (!any_fail)
108                         any_fail = retval;
109         }
110
111         return any_fail;
112 }
113
114 static int do_ut(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
115 {
116         struct cmd_tbl *cp;
117
118         if (argc < 2)
119                 return CMD_RET_USAGE;
120
121         /* drop initial "ut" arg */
122         argc--;
123         argv++;
124
125         cp = find_cmd_tbl(argv[0], cmd_ut_sub, ARRAY_SIZE(cmd_ut_sub));
126
127         if (cp)
128                 return cp->cmd(cmdtp, flag, argc, argv);
129
130         return CMD_RET_USAGE;
131 }
132
133 #ifdef CONFIG_SYS_LONGHELP
134 static char ut_help_text[] =
135         "all - execute all enabled tests\n"
136 #ifdef CONFIG_SANDBOX
137         "ut bloblist - Test bloblist implementation\n"
138         "ut compression - Test compressors and bootm decompression\n"
139 #endif
140 #ifdef CONFIG_UT_DM
141         "ut dm [test-name]\n"
142 #endif
143 #ifdef CONFIG_UT_ENV
144         "ut env [test-name]\n"
145 #endif
146 #ifdef CONFIG_UT_LIB
147         "ut lib [test-name] - test library functions\n"
148 #endif
149 #ifdef CONFIG_UT_LOG
150         "ut log [test-name] - test logging functions\n"
151 #endif
152         "ut mem [test-name] - test memory-related commands\n"
153 #ifdef CONFIG_UT_OPTEE
154         "ut optee [test-name]\n"
155 #endif
156 #ifdef CONFIG_UT_OVERLAY
157         "ut overlay [test-name]\n"
158 #endif
159         "ut setexpr [test-name] - test setexpr command\n"
160 #ifdef CONFIG_SANDBOX
161         "ut str - Basic test of string functions\n"
162 #endif
163 #ifdef CONFIG_UT_TIME
164         "ut time - Very basic test of time functions\n"
165 #endif
166 #if defined(CONFIG_UT_UNICODE) && \
167         !defined(CONFIG_SPL_BUILD) && !defined(API_BUILD)
168         "ut unicode [test-name] - test Unicode functions\n"
169 #endif
170         ;
171 #endif /* CONFIG_SYS_LONGHELP */
172
173 U_BOOT_CMD(
174         ut, CONFIG_SYS_MAXARGS, 1, do_ut,
175         "unit tests", ut_help_text
176 );