blob: 8f3089890ea7462698f048d64462f6e43144cb4b [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0
Joe Hershbergerc617ede2015-05-20 14:27:28 -05002/*
3 * (C) Copyright 2015
4 * Joe Hershberger, National Instruments, joe.hershberger@ni.com
Joe Hershbergerc617ede2015-05-20 14:27:28 -05005 */
6
7#include <common.h>
8#include <command.h>
Simon Glass132644f2020-07-28 19:41:13 -06009#include <console.h>
Joe Hershbergerc617ede2015-05-20 14:27:28 -050010#include <test/suites.h>
Simon Glass4d869c12017-11-25 11:57:29 -070011#include <test/test.h>
Joe Hershbergerc617ede2015-05-20 14:27:28 -050012
Simon Glass09140112020-05-10 11:40:03 -060013static int do_ut_all(struct cmd_tbl *cmdtp, int flag, int argc,
14 char *const argv[]);
Joe Hershbergerc617ede2015-05-20 14:27:28 -050015
Philippe Reynes4ad4edf2019-12-17 19:07:04 +010016int cmd_ut_category(const char *name, const char *prefix,
17 struct unit_test *tests, int n_ents,
Simon Glass09140112020-05-10 11:40:03 -060018 int argc, char *const argv[])
Simon Glass4d869c12017-11-25 11:57:29 -070019{
20 struct unit_test_state uts = { .fail_count = 0 };
21 struct unit_test *test;
Philippe Reynes4ad4edf2019-12-17 19:07:04 +010022 int prefix_len = prefix ? strlen(prefix) : 0;
Simon Glass4d869c12017-11-25 11:57:29 -070023
24 if (argc == 1)
25 printf("Running %d %s tests\n", n_ents, name);
26
27 for (test = tests; test < tests + n_ents; test++) {
Philippe Reynes4ad4edf2019-12-17 19:07:04 +010028 const char *test_name = test->name;
29
30 /* Remove the prefix */
Philippe Reynes3f05f082020-01-09 17:34:02 +010031 if (prefix && !strncmp(test_name, prefix, prefix_len))
Philippe Reynes4ad4edf2019-12-17 19:07:04 +010032 test_name += prefix_len;
33
34 if (argc > 1 && strcmp(argv[1], test_name))
Simon Glass4d869c12017-11-25 11:57:29 -070035 continue;
36 printf("Test: %s\n", test->name);
37
Simon Glass132644f2020-07-28 19:41:13 -060038 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
Simon Glass4d869c12017-11-25 11:57:29 -070047 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
Simon Glass09140112020-05-10 11:40:03 -060057static struct cmd_tbl cmd_ut_sub[] = {
Joe Hershbergerc617ede2015-05-20 14:27:28 -050058 U_BOOT_CMD_MKENT(all, CONFIG_SYS_MAXARGS, 1, do_ut_all, "", ""),
Joe Hershberger40441e02015-05-20 14:27:29 -050059#if defined(CONFIG_UT_DM)
60 U_BOOT_CMD_MKENT(dm, CONFIG_SYS_MAXARGS, 1, do_ut_dm, "", ""),
61#endif
Joe Hershberger421f86f2015-05-20 14:27:36 -050062#if defined(CONFIG_UT_ENV)
63 U_BOOT_CMD_MKENT(env, CONFIG_SYS_MAXARGS, 1, do_ut_env, "", ""),
64#endif
Heiko Stuebner96383bd2019-10-23 16:46:41 +020065#ifdef CONFIG_UT_OPTEE
66 U_BOOT_CMD_MKENT(optee, CONFIG_SYS_MAXARGS, 1, do_ut_optee, "", ""),
67#endif
Maxime Ripardf2a99422016-07-05 10:26:46 +020068#ifdef CONFIG_UT_OVERLAY
69 U_BOOT_CMD_MKENT(overlay, CONFIG_SYS_MAXARGS, 1, do_ut_overlay, "", ""),
70#endif
Heinrich Schuchardt2dd01112019-01-30 07:53:31 +010071#ifdef CONFIG_UT_LIB
72 U_BOOT_CMD_MKENT(lib, CONFIG_SYS_MAXARGS, 1, do_ut_lib, "", ""),
73#endif
Heinrich Schuchardt395041b2020-02-26 21:48:18 +010074#ifdef CONFIG_UT_LOG
75 U_BOOT_CMD_MKENT(log, CONFIG_SYS_MAXARGS, 1, do_ut_log, "", ""),
76#endif
Simon Glass550a9e72020-07-28 19:41:14 -060077 U_BOOT_CMD_MKENT(mem, CONFIG_SYS_MAXARGS, 1, do_ut_mem, "", ""),
Heinrich Schuchardtd5f85302021-02-17 12:58:14 +010078#ifdef CONFIG_CMD_SETEXPR
Simon Glass90a99012020-11-01 14:15:35 -070079 U_BOOT_CMD_MKENT(setexpr, CONFIG_SYS_MAXARGS, 1, do_ut_setexpr, "",
80 ""),
Heinrich Schuchardtd5f85302021-02-17 12:58:14 +010081#endif
Joe Hershbergerc812f722015-05-20 14:27:30 -050082#ifdef CONFIG_UT_TIME
83 U_BOOT_CMD_MKENT(time, CONFIG_SYS_MAXARGS, 1, do_ut_time, "", ""),
84#endif
Heinrich Schuchardtf11a1642018-08-31 21:31:28 +020085#if CONFIG_IS_ENABLED(UT_UNICODE) && !defined(API_BUILD)
86 U_BOOT_CMD_MKENT(unicode, CONFIG_SYS_MAXARGS, 1, do_ut_unicode, "", ""),
87#endif
Simon Glass0aac10f2017-11-25 11:57:33 -070088#ifdef CONFIG_SANDBOX
89 U_BOOT_CMD_MKENT(compression, CONFIG_SYS_MAXARGS, 1, do_ut_compression,
90 "", ""),
Simon Glass919e7a82018-11-15 18:43:53 -070091 U_BOOT_CMD_MKENT(bloblist, CONFIG_SYS_MAXARGS, 1, do_ut_bloblist,
92 "", ""),
Simon Glassf158ba12020-11-05 10:33:38 -070093 U_BOOT_CMD_MKENT(bootm, CONFIG_SYS_MAXARGS, 1, do_ut_bootm, "", ""),
Simon Glass0aac10f2017-11-25 11:57:33 -070094#endif
Heinrich Schuchardt9d43b412021-01-18 00:17:34 +010095 U_BOOT_CMD_MKENT(str, CONFIG_SYS_MAXARGS, 1, do_ut_str, "", ""),
Joe Hershbergerc617ede2015-05-20 14:27:28 -050096};
97
Simon Glass09140112020-05-10 11:40:03 -060098static int do_ut_all(struct cmd_tbl *cmdtp, int flag, int argc,
99 char *const argv[])
Joe Hershbergerc617ede2015-05-20 14:27:28 -0500100{
101 int i;
102 int retval;
103 int any_fail = 0;
104
105 for (i = 1; i < ARRAY_SIZE(cmd_ut_sub); i++) {
106 printf("----Running %s tests----\n", cmd_ut_sub[i].name);
107 retval = cmd_ut_sub[i].cmd(cmdtp, flag, 1, &cmd_ut_sub[i].name);
108 if (!any_fail)
109 any_fail = retval;
110 }
111
112 return any_fail;
113}
114
Simon Glass09140112020-05-10 11:40:03 -0600115static int do_ut(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
Joe Hershbergerc617ede2015-05-20 14:27:28 -0500116{
Simon Glass09140112020-05-10 11:40:03 -0600117 struct cmd_tbl *cp;
Joe Hershbergerc617ede2015-05-20 14:27:28 -0500118
119 if (argc < 2)
120 return CMD_RET_USAGE;
121
122 /* drop initial "ut" arg */
123 argc--;
124 argv++;
125
126 cp = find_cmd_tbl(argv[0], cmd_ut_sub, ARRAY_SIZE(cmd_ut_sub));
127
128 if (cp)
129 return cp->cmd(cmdtp, flag, argc, argv);
130
131 return CMD_RET_USAGE;
132}
133
134#ifdef CONFIG_SYS_LONGHELP
135static char ut_help_text[] =
136 "all - execute all enabled tests\n"
Heinrich Schuchardtf11a1642018-08-31 21:31:28 +0200137#ifdef CONFIG_SANDBOX
Simon Glass919e7a82018-11-15 18:43:53 -0700138 "ut bloblist - Test bloblist implementation\n"
Heinrich Schuchardtf11a1642018-08-31 21:31:28 +0200139 "ut compression - Test compressors and bootm decompression\n"
140#endif
Joe Hershberger40441e02015-05-20 14:27:29 -0500141#ifdef CONFIG_UT_DM
142 "ut dm [test-name]\n"
143#endif
Joe Hershberger421f86f2015-05-20 14:27:36 -0500144#ifdef CONFIG_UT_ENV
145 "ut env [test-name]\n"
146#endif
Heinrich Schuchardt2dd01112019-01-30 07:53:31 +0100147#ifdef CONFIG_UT_LIB
148 "ut lib [test-name] - test library functions\n"
149#endif
Heinrich Schuchardt395041b2020-02-26 21:48:18 +0100150#ifdef CONFIG_UT_LOG
151 "ut log [test-name] - test logging functions\n"
152#endif
Simon Glass550a9e72020-07-28 19:41:14 -0600153 "ut mem [test-name] - test memory-related commands\n"
Heiko Stuebner96383bd2019-10-23 16:46:41 +0200154#ifdef CONFIG_UT_OPTEE
155 "ut optee [test-name]\n"
156#endif
Maxime Ripardf2a99422016-07-05 10:26:46 +0200157#ifdef CONFIG_UT_OVERLAY
158 "ut overlay [test-name]\n"
159#endif
Simon Glass90a99012020-11-01 14:15:35 -0700160 "ut setexpr [test-name] - test setexpr command\n"
Simon Glass4f04d542020-04-08 08:32:55 -0600161#ifdef CONFIG_SANDBOX
162 "ut str - Basic test of string functions\n"
163#endif
Joe Hershbergerc812f722015-05-20 14:27:30 -0500164#ifdef CONFIG_UT_TIME
165 "ut time - Very basic test of time functions\n"
166#endif
Heinrich Schuchardtf11a1642018-08-31 21:31:28 +0200167#if defined(CONFIG_UT_UNICODE) && \
168 !defined(CONFIG_SPL_BUILD) && !defined(API_BUILD)
169 "ut unicode [test-name] - test Unicode functions\n"
Simon Glass0aac10f2017-11-25 11:57:33 -0700170#endif
Joe Hershbergerc617ede2015-05-20 14:27:28 -0500171 ;
Heinrich Schuchardtf11a1642018-08-31 21:31:28 +0200172#endif /* CONFIG_SYS_LONGHELP */
Joe Hershbergerc617ede2015-05-20 14:27:28 -0500173
174U_BOOT_CMD(
175 ut, CONFIG_SYS_MAXARGS, 1, do_ut,
176 "unit tests", ut_help_text
177);