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