blob: 67a13ee32b8b8917b60cf04f2bd9b0b356485e22 [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>
Simon Glass1c721752021-03-07 17:34:47 -070012#include <test/ut.h>
Joe Hershbergerc617ede2015-05-20 14:27:28 -050013
Simon Glass09140112020-05-10 11:40:03 -060014static int do_ut_all(struct cmd_tbl *cmdtp, int flag, int argc,
15 char *const argv[]);
Joe Hershbergerc617ede2015-05-20 14:27:28 -050016
Philippe Reynes4ad4edf2019-12-17 19:07:04 +010017int cmd_ut_category(const char *name, const char *prefix,
18 struct unit_test *tests, int n_ents,
Simon Glass09140112020-05-10 11:40:03 -060019 int argc, char *const argv[])
Simon Glass4d869c12017-11-25 11:57:29 -070020{
Simon Glass1c721752021-03-07 17:34:47 -070021 int ret;
Simon Glass4d869c12017-11-25 11:57:29 -070022
Simon Glass1c721752021-03-07 17:34:47 -070023 ret = ut_run_list(name, prefix, tests, n_ents,
24 argc > 1 ? argv[1] : NULL);
Simon Glass4d869c12017-11-25 11:57:29 -070025
Simon Glass1c721752021-03-07 17:34:47 -070026 return ret ? CMD_RET_FAILURE : 0;
Simon Glass4d869c12017-11-25 11:57:29 -070027}
28
Simon Glass09140112020-05-10 11:40:03 -060029static struct cmd_tbl cmd_ut_sub[] = {
Joe Hershbergerc617ede2015-05-20 14:27:28 -050030 U_BOOT_CMD_MKENT(all, CONFIG_SYS_MAXARGS, 1, do_ut_all, "", ""),
Simon Glassfb1451b2022-04-24 23:31:24 -060031#ifdef CONFIG_BOOTSTD
32 U_BOOT_CMD_MKENT(bootstd, CONFIG_SYS_MAXARGS, 1, do_ut_bootstd,
33 "", ""),
34#endif
Steffen Jaeckel25c8b9f2021-07-08 15:57:40 +020035 U_BOOT_CMD_MKENT(common, CONFIG_SYS_MAXARGS, 1, do_ut_common, "", ""),
Joe Hershberger40441e02015-05-20 14:27:29 -050036#if defined(CONFIG_UT_DM)
37 U_BOOT_CMD_MKENT(dm, CONFIG_SYS_MAXARGS, 1, do_ut_dm, "", ""),
38#endif
Joe Hershberger421f86f2015-05-20 14:27:36 -050039#if defined(CONFIG_UT_ENV)
40 U_BOOT_CMD_MKENT(env, CONFIG_SYS_MAXARGS, 1, do_ut_env, "", ""),
41#endif
Heiko Stuebner96383bd2019-10-23 16:46:41 +020042#ifdef CONFIG_UT_OPTEE
43 U_BOOT_CMD_MKENT(optee, CONFIG_SYS_MAXARGS, 1, do_ut_optee, "", ""),
44#endif
Maxime Ripardf2a99422016-07-05 10:26:46 +020045#ifdef CONFIG_UT_OVERLAY
46 U_BOOT_CMD_MKENT(overlay, CONFIG_SYS_MAXARGS, 1, do_ut_overlay, "", ""),
47#endif
Heinrich Schuchardt2dd01112019-01-30 07:53:31 +010048#ifdef CONFIG_UT_LIB
49 U_BOOT_CMD_MKENT(lib, CONFIG_SYS_MAXARGS, 1, do_ut_lib, "", ""),
50#endif
Heinrich Schuchardt395041b2020-02-26 21:48:18 +010051#ifdef CONFIG_UT_LOG
52 U_BOOT_CMD_MKENT(log, CONFIG_SYS_MAXARGS, 1, do_ut_log, "", ""),
53#endif
Simon Glass550a9e72020-07-28 19:41:14 -060054 U_BOOT_CMD_MKENT(mem, CONFIG_SYS_MAXARGS, 1, do_ut_mem, "", ""),
Heinrich Schuchardtd5f85302021-02-17 12:58:14 +010055#ifdef CONFIG_CMD_SETEXPR
Simon Glass90a99012020-11-01 14:15:35 -070056 U_BOOT_CMD_MKENT(setexpr, CONFIG_SYS_MAXARGS, 1, do_ut_setexpr, "",
57 ""),
Heinrich Schuchardtd5f85302021-02-17 12:58:14 +010058#endif
Simon Glassfbb99dc2021-05-08 06:59:58 -060059 U_BOOT_CMD_MKENT(print, CONFIG_SYS_MAXARGS, 1, do_ut_print, "", ""),
Joe Hershbergerc812f722015-05-20 14:27:30 -050060#ifdef CONFIG_UT_TIME
61 U_BOOT_CMD_MKENT(time, CONFIG_SYS_MAXARGS, 1, do_ut_time, "", ""),
62#endif
Heinrich Schuchardtf11a1642018-08-31 21:31:28 +020063#if CONFIG_IS_ENABLED(UT_UNICODE) && !defined(API_BUILD)
64 U_BOOT_CMD_MKENT(unicode, CONFIG_SYS_MAXARGS, 1, do_ut_unicode, "", ""),
65#endif
Simon Glass0aac10f2017-11-25 11:57:33 -070066#ifdef CONFIG_SANDBOX
67 U_BOOT_CMD_MKENT(compression, CONFIG_SYS_MAXARGS, 1, do_ut_compression,
68 "", ""),
Simon Glass919e7a82018-11-15 18:43:53 -070069 U_BOOT_CMD_MKENT(bloblist, CONFIG_SYS_MAXARGS, 1, do_ut_bloblist,
70 "", ""),
Simon Glassf158ba12020-11-05 10:33:38 -070071 U_BOOT_CMD_MKENT(bootm, CONFIG_SYS_MAXARGS, 1, do_ut_bootm, "", ""),
Simon Glass0aac10f2017-11-25 11:57:33 -070072#endif
Heinrich Schuchardt9d43b412021-01-18 00:17:34 +010073 U_BOOT_CMD_MKENT(str, CONFIG_SYS_MAXARGS, 1, do_ut_str, "", ""),
Bin Mengea309212021-02-25 17:22:35 +080074#ifdef CONFIG_CMD_ADDRMAP
75 U_BOOT_CMD_MKENT(addrmap, CONFIG_SYS_MAXARGS, 1, do_ut_addrmap, "", ""),
76#endif
Joe Hershbergerc617ede2015-05-20 14:27:28 -050077};
78
Simon Glass09140112020-05-10 11:40:03 -060079static int do_ut_all(struct cmd_tbl *cmdtp, int flag, int argc,
80 char *const argv[])
Joe Hershbergerc617ede2015-05-20 14:27:28 -050081{
82 int i;
83 int retval;
84 int any_fail = 0;
85
86 for (i = 1; i < ARRAY_SIZE(cmd_ut_sub); i++) {
87 printf("----Running %s tests----\n", cmd_ut_sub[i].name);
88 retval = cmd_ut_sub[i].cmd(cmdtp, flag, 1, &cmd_ut_sub[i].name);
89 if (!any_fail)
90 any_fail = retval;
91 }
92
93 return any_fail;
94}
95
Simon Glass09140112020-05-10 11:40:03 -060096static int do_ut(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
Joe Hershbergerc617ede2015-05-20 14:27:28 -050097{
Simon Glass09140112020-05-10 11:40:03 -060098 struct cmd_tbl *cp;
Joe Hershbergerc617ede2015-05-20 14:27:28 -050099
100 if (argc < 2)
101 return CMD_RET_USAGE;
102
103 /* drop initial "ut" arg */
104 argc--;
105 argv++;
106
107 cp = find_cmd_tbl(argv[0], cmd_ut_sub, ARRAY_SIZE(cmd_ut_sub));
108
109 if (cp)
110 return cp->cmd(cmdtp, flag, argc, argv);
111
112 return CMD_RET_USAGE;
113}
114
115#ifdef CONFIG_SYS_LONGHELP
116static char ut_help_text[] =
117 "all - execute all enabled tests\n"
Heinrich Schuchardtf11a1642018-08-31 21:31:28 +0200118#ifdef CONFIG_SANDBOX
Simon Glass919e7a82018-11-15 18:43:53 -0700119 "ut bloblist - Test bloblist implementation\n"
Heinrich Schuchardtf11a1642018-08-31 21:31:28 +0200120 "ut compression - Test compressors and bootm decompression\n"
121#endif
Simon Glassfb1451b2022-04-24 23:31:24 -0600122#ifdef CONFIG_BOOTSTD
123 "ut bootstd - Test standard boot implementation\n"
124#endif
Joe Hershberger40441e02015-05-20 14:27:29 -0500125#ifdef CONFIG_UT_DM
126 "ut dm [test-name]\n"
127#endif
Joe Hershberger421f86f2015-05-20 14:27:36 -0500128#ifdef CONFIG_UT_ENV
129 "ut env [test-name]\n"
130#endif
Heinrich Schuchardt2dd01112019-01-30 07:53:31 +0100131#ifdef CONFIG_UT_LIB
132 "ut lib [test-name] - test library functions\n"
133#endif
Heinrich Schuchardt395041b2020-02-26 21:48:18 +0100134#ifdef CONFIG_UT_LOG
135 "ut log [test-name] - test logging functions\n"
136#endif
Simon Glass550a9e72020-07-28 19:41:14 -0600137 "ut mem [test-name] - test memory-related commands\n"
Heiko Stuebner96383bd2019-10-23 16:46:41 +0200138#ifdef CONFIG_UT_OPTEE
139 "ut optee [test-name]\n"
140#endif
Maxime Ripardf2a99422016-07-05 10:26:46 +0200141#ifdef CONFIG_UT_OVERLAY
142 "ut overlay [test-name]\n"
143#endif
Simon Glassfbb99dc2021-05-08 06:59:58 -0600144 "ut print [test-name] - test printing\n"
Simon Glass90a99012020-11-01 14:15:35 -0700145 "ut setexpr [test-name] - test setexpr command\n"
Simon Glass4f04d542020-04-08 08:32:55 -0600146#ifdef CONFIG_SANDBOX
147 "ut str - Basic test of string functions\n"
148#endif
Joe Hershbergerc812f722015-05-20 14:27:30 -0500149#ifdef CONFIG_UT_TIME
150 "ut time - Very basic test of time functions\n"
151#endif
Heinrich Schuchardtf11a1642018-08-31 21:31:28 +0200152#if defined(CONFIG_UT_UNICODE) && \
153 !defined(CONFIG_SPL_BUILD) && !defined(API_BUILD)
154 "ut unicode [test-name] - test Unicode functions\n"
Simon Glass0aac10f2017-11-25 11:57:33 -0700155#endif
Bin Mengea309212021-02-25 17:22:35 +0800156#ifdef CONFIG_CMD_ADDRMAP
157 "ut addrmap - Very basic test of addrmap command\n"
158#endif
Joe Hershbergerc617ede2015-05-20 14:27:28 -0500159 ;
Heinrich Schuchardtf11a1642018-08-31 21:31:28 +0200160#endif /* CONFIG_SYS_LONGHELP */
Joe Hershbergerc617ede2015-05-20 14:27:28 -0500161
162U_BOOT_CMD(
163 ut, CONFIG_SYS_MAXARGS, 1, do_ut,
164 "unit tests", ut_help_text
165);