blob: bd20a69c55219baceae71dc1d5da5e9c168f0a13 [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>
9#include <test/suites.h>
Simon Glass4d869c12017-11-25 11:57:29 -070010#include <test/test.h>
Joe Hershbergerc617ede2015-05-20 14:27:28 -050011
12static int do_ut_all(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
13
Philippe Reynes4ad4edf2019-12-17 19:07:04 +010014int cmd_ut_category(const char *name, const char *prefix,
15 struct unit_test *tests, int n_ents,
Simon Glass4d869c12017-11-25 11:57:29 -070016 int argc, char * const argv[])
17{
18 struct unit_test_state uts = { .fail_count = 0 };
19 struct unit_test *test;
Philippe Reynes4ad4edf2019-12-17 19:07:04 +010020 int prefix_len = prefix ? strlen(prefix) : 0;
Simon Glass4d869c12017-11-25 11:57:29 -070021
22 if (argc == 1)
23 printf("Running %d %s tests\n", n_ents, name);
24
25 for (test = tests; test < tests + n_ents; test++) {
Philippe Reynes4ad4edf2019-12-17 19:07:04 +010026 const char *test_name = test->name;
27
28 /* Remove the prefix */
Philippe Reynes3f05f082020-01-09 17:34:02 +010029 if (prefix && !strncmp(test_name, prefix, prefix_len))
Philippe Reynes4ad4edf2019-12-17 19:07:04 +010030 test_name += prefix_len;
31
32 if (argc > 1 && strcmp(argv[1], test_name))
Simon Glass4d869c12017-11-25 11:57:29 -070033 continue;
34 printf("Test: %s\n", test->name);
35
36 uts.start = mallinfo();
37
38 test->func(&uts);
39 }
40
41 printf("Failures: %d\n", uts.fail_count);
42
43 return uts.fail_count ? CMD_RET_FAILURE : 0;
44}
45
Joe Hershbergerc617ede2015-05-20 14:27:28 -050046static cmd_tbl_t cmd_ut_sub[] = {
47 U_BOOT_CMD_MKENT(all, CONFIG_SYS_MAXARGS, 1, do_ut_all, "", ""),
Joe Hershberger40441e02015-05-20 14:27:29 -050048#if defined(CONFIG_UT_DM)
49 U_BOOT_CMD_MKENT(dm, CONFIG_SYS_MAXARGS, 1, do_ut_dm, "", ""),
50#endif
Joe Hershberger421f86f2015-05-20 14:27:36 -050051#if defined(CONFIG_UT_ENV)
52 U_BOOT_CMD_MKENT(env, CONFIG_SYS_MAXARGS, 1, do_ut_env, "", ""),
53#endif
Heiko Stuebner96383bd2019-10-23 16:46:41 +020054#ifdef CONFIG_UT_OPTEE
55 U_BOOT_CMD_MKENT(optee, CONFIG_SYS_MAXARGS, 1, do_ut_optee, "", ""),
56#endif
Maxime Ripardf2a99422016-07-05 10:26:46 +020057#ifdef CONFIG_UT_OVERLAY
58 U_BOOT_CMD_MKENT(overlay, CONFIG_SYS_MAXARGS, 1, do_ut_overlay, "", ""),
59#endif
Heinrich Schuchardt2dd01112019-01-30 07:53:31 +010060#ifdef CONFIG_UT_LIB
61 U_BOOT_CMD_MKENT(lib, CONFIG_SYS_MAXARGS, 1, do_ut_lib, "", ""),
62#endif
Heinrich Schuchardt395041b2020-02-26 21:48:18 +010063#ifdef CONFIG_UT_LOG
64 U_BOOT_CMD_MKENT(log, CONFIG_SYS_MAXARGS, 1, do_ut_log, "", ""),
65#endif
Joe Hershbergerc812f722015-05-20 14:27:30 -050066#ifdef CONFIG_UT_TIME
67 U_BOOT_CMD_MKENT(time, CONFIG_SYS_MAXARGS, 1, do_ut_time, "", ""),
68#endif
Heinrich Schuchardtf11a1642018-08-31 21:31:28 +020069#if CONFIG_IS_ENABLED(UT_UNICODE) && !defined(API_BUILD)
70 U_BOOT_CMD_MKENT(unicode, CONFIG_SYS_MAXARGS, 1, do_ut_unicode, "", ""),
71#endif
Simon Glass0aac10f2017-11-25 11:57:33 -070072#ifdef CONFIG_SANDBOX
73 U_BOOT_CMD_MKENT(compression, CONFIG_SYS_MAXARGS, 1, do_ut_compression,
74 "", ""),
Simon Glass919e7a82018-11-15 18:43:53 -070075 U_BOOT_CMD_MKENT(bloblist, CONFIG_SYS_MAXARGS, 1, do_ut_bloblist,
76 "", ""),
Simon Glass4f04d542020-04-08 08:32:55 -060077 U_BOOT_CMD_MKENT(str, CONFIG_SYS_MAXARGS, 1, do_ut_str,
78 "", ""),
Simon Glass0aac10f2017-11-25 11:57:33 -070079#endif
Joe Hershbergerc617ede2015-05-20 14:27:28 -050080};
81
82static int do_ut_all(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
83{
84 int i;
85 int retval;
86 int any_fail = 0;
87
88 for (i = 1; i < ARRAY_SIZE(cmd_ut_sub); i++) {
89 printf("----Running %s tests----\n", cmd_ut_sub[i].name);
90 retval = cmd_ut_sub[i].cmd(cmdtp, flag, 1, &cmd_ut_sub[i].name);
91 if (!any_fail)
92 any_fail = retval;
93 }
94
95 return any_fail;
96}
97
98static int do_ut(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
99{
100 cmd_tbl_t *cp;
101
102 if (argc < 2)
103 return CMD_RET_USAGE;
104
105 /* drop initial "ut" arg */
106 argc--;
107 argv++;
108
109 cp = find_cmd_tbl(argv[0], cmd_ut_sub, ARRAY_SIZE(cmd_ut_sub));
110
111 if (cp)
112 return cp->cmd(cmdtp, flag, argc, argv);
113
114 return CMD_RET_USAGE;
115}
116
117#ifdef CONFIG_SYS_LONGHELP
118static char ut_help_text[] =
119 "all - execute all enabled tests\n"
Heinrich Schuchardtf11a1642018-08-31 21:31:28 +0200120#ifdef CONFIG_SANDBOX
Simon Glass919e7a82018-11-15 18:43:53 -0700121 "ut bloblist - Test bloblist implementation\n"
Heinrich Schuchardtf11a1642018-08-31 21:31:28 +0200122 "ut compression - Test compressors and bootm decompression\n"
123#endif
Joe Hershberger40441e02015-05-20 14:27:29 -0500124#ifdef CONFIG_UT_DM
125 "ut dm [test-name]\n"
126#endif
Joe Hershberger421f86f2015-05-20 14:27:36 -0500127#ifdef CONFIG_UT_ENV
128 "ut env [test-name]\n"
129#endif
Heinrich Schuchardt2dd01112019-01-30 07:53:31 +0100130#ifdef CONFIG_UT_LIB
131 "ut lib [test-name] - test library functions\n"
132#endif
Heinrich Schuchardt395041b2020-02-26 21:48:18 +0100133#ifdef CONFIG_UT_LOG
134 "ut log [test-name] - test logging functions\n"
135#endif
Heiko Stuebner96383bd2019-10-23 16:46:41 +0200136#ifdef CONFIG_UT_OPTEE
137 "ut optee [test-name]\n"
138#endif
Maxime Ripardf2a99422016-07-05 10:26:46 +0200139#ifdef CONFIG_UT_OVERLAY
140 "ut overlay [test-name]\n"
141#endif
Simon Glass4f04d542020-04-08 08:32:55 -0600142#ifdef CONFIG_SANDBOX
143 "ut str - Basic test of string functions\n"
144#endif
Joe Hershbergerc812f722015-05-20 14:27:30 -0500145#ifdef CONFIG_UT_TIME
146 "ut time - Very basic test of time functions\n"
147#endif
Heinrich Schuchardtf11a1642018-08-31 21:31:28 +0200148#if defined(CONFIG_UT_UNICODE) && \
149 !defined(CONFIG_SPL_BUILD) && !defined(API_BUILD)
150 "ut unicode [test-name] - test Unicode functions\n"
Simon Glass0aac10f2017-11-25 11:57:33 -0700151#endif
Joe Hershbergerc617ede2015-05-20 14:27:28 -0500152 ;
Heinrich Schuchardtf11a1642018-08-31 21:31:28 +0200153#endif /* CONFIG_SYS_LONGHELP */
Joe Hershbergerc617ede2015-05-20 14:27:28 -0500154
155U_BOOT_CMD(
156 ut, CONFIG_SYS_MAXARGS, 1, do_ut,
157 "unit tests", ut_help_text
158);