test: cmd: Add a basic test for 'addrmap' command
[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 #ifdef CONFIG_CMD_SETEXPR
79         U_BOOT_CMD_MKENT(setexpr, CONFIG_SYS_MAXARGS, 1, do_ut_setexpr, "",
80                          ""),
81 #endif
82 #ifdef CONFIG_UT_TIME
83         U_BOOT_CMD_MKENT(time, CONFIG_SYS_MAXARGS, 1, do_ut_time, "", ""),
84 #endif
85 #if CONFIG_IS_ENABLED(UT_UNICODE) && !defined(API_BUILD)
86         U_BOOT_CMD_MKENT(unicode, CONFIG_SYS_MAXARGS, 1, do_ut_unicode, "", ""),
87 #endif
88 #ifdef CONFIG_SANDBOX
89         U_BOOT_CMD_MKENT(compression, CONFIG_SYS_MAXARGS, 1, do_ut_compression,
90                          "", ""),
91         U_BOOT_CMD_MKENT(bloblist, CONFIG_SYS_MAXARGS, 1, do_ut_bloblist,
92                          "", ""),
93         U_BOOT_CMD_MKENT(bootm, CONFIG_SYS_MAXARGS, 1, do_ut_bootm, "", ""),
94 #endif
95         U_BOOT_CMD_MKENT(str, CONFIG_SYS_MAXARGS, 1, do_ut_str, "", ""),
96 #ifdef CONFIG_CMD_ADDRMAP
97         U_BOOT_CMD_MKENT(addrmap, CONFIG_SYS_MAXARGS, 1, do_ut_addrmap, "", ""),
98 #endif
99 };
100
101 static int do_ut_all(struct cmd_tbl *cmdtp, int flag, int argc,
102                      char *const argv[])
103 {
104         int i;
105         int retval;
106         int any_fail = 0;
107
108         for (i = 1; i < ARRAY_SIZE(cmd_ut_sub); i++) {
109                 printf("----Running %s tests----\n", cmd_ut_sub[i].name);
110                 retval = cmd_ut_sub[i].cmd(cmdtp, flag, 1, &cmd_ut_sub[i].name);
111                 if (!any_fail)
112                         any_fail = retval;
113         }
114
115         return any_fail;
116 }
117
118 static int do_ut(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
119 {
120         struct cmd_tbl *cp;
121
122         if (argc < 2)
123                 return CMD_RET_USAGE;
124
125         /* drop initial "ut" arg */
126         argc--;
127         argv++;
128
129         cp = find_cmd_tbl(argv[0], cmd_ut_sub, ARRAY_SIZE(cmd_ut_sub));
130
131         if (cp)
132                 return cp->cmd(cmdtp, flag, argc, argv);
133
134         return CMD_RET_USAGE;
135 }
136
137 #ifdef CONFIG_SYS_LONGHELP
138 static char ut_help_text[] =
139         "all - execute all enabled tests\n"
140 #ifdef CONFIG_SANDBOX
141         "ut bloblist - Test bloblist implementation\n"
142         "ut compression - Test compressors and bootm decompression\n"
143 #endif
144 #ifdef CONFIG_UT_DM
145         "ut dm [test-name]\n"
146 #endif
147 #ifdef CONFIG_UT_ENV
148         "ut env [test-name]\n"
149 #endif
150 #ifdef CONFIG_UT_LIB
151         "ut lib [test-name] - test library functions\n"
152 #endif
153 #ifdef CONFIG_UT_LOG
154         "ut log [test-name] - test logging functions\n"
155 #endif
156         "ut mem [test-name] - test memory-related commands\n"
157 #ifdef CONFIG_UT_OPTEE
158         "ut optee [test-name]\n"
159 #endif
160 #ifdef CONFIG_UT_OVERLAY
161         "ut overlay [test-name]\n"
162 #endif
163         "ut setexpr [test-name] - test setexpr command\n"
164 #ifdef CONFIG_SANDBOX
165         "ut str - Basic test of string functions\n"
166 #endif
167 #ifdef CONFIG_UT_TIME
168         "ut time - Very basic test of time functions\n"
169 #endif
170 #if defined(CONFIG_UT_UNICODE) && \
171         !defined(CONFIG_SPL_BUILD) && !defined(API_BUILD)
172         "ut unicode [test-name] - test Unicode functions\n"
173 #endif
174 #ifdef CONFIG_CMD_ADDRMAP
175         "ut addrmap - Very basic test of addrmap command\n"
176 #endif
177         ;
178 #endif /* CONFIG_SYS_LONGHELP */
179
180 U_BOOT_CMD(
181         ut, CONFIG_SYS_MAXARGS, 1, do_ut,
182         "unit tests", ut_help_text
183 );