blob: cc9543c315c1eda35a6a64769e18d62cfa197e68 [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
Simon Glass09140112020-05-10 11:40:03 -060012static int do_ut_all(struct cmd_tbl *cmdtp, int flag, int argc,
13 char *const argv[]);
Joe Hershbergerc617ede2015-05-20 14:27:28 -050014
Philippe Reynes4ad4edf2019-12-17 19:07:04 +010015int cmd_ut_category(const char *name, const char *prefix,
16 struct unit_test *tests, int n_ents,
Simon Glass09140112020-05-10 11:40:03 -060017 int argc, char *const argv[])
Simon Glass4d869c12017-11-25 11:57:29 -070018{
19 struct unit_test_state uts = { .fail_count = 0 };
20 struct unit_test *test;
Philippe Reynes4ad4edf2019-12-17 19:07:04 +010021 int prefix_len = prefix ? strlen(prefix) : 0;
Simon Glass4d869c12017-11-25 11:57:29 -070022
23 if (argc == 1)
24 printf("Running %d %s tests\n", n_ents, name);
25
26 for (test = tests; test < tests + n_ents; test++) {
Philippe Reynes4ad4edf2019-12-17 19:07:04 +010027 const char *test_name = test->name;
28
29 /* Remove the prefix */
Philippe Reynes3f05f082020-01-09 17:34:02 +010030 if (prefix && !strncmp(test_name, prefix, prefix_len))
Philippe Reynes4ad4edf2019-12-17 19:07:04 +010031 test_name += prefix_len;
32
33 if (argc > 1 && strcmp(argv[1], test_name))
Simon Glass4d869c12017-11-25 11:57:29 -070034 continue;
35 printf("Test: %s\n", test->name);
36
37 uts.start = mallinfo();
38
39 test->func(&uts);
40 }
41
42 printf("Failures: %d\n", uts.fail_count);
43
44 return uts.fail_count ? CMD_RET_FAILURE : 0;
45}
46
Simon Glass09140112020-05-10 11:40:03 -060047static struct cmd_tbl cmd_ut_sub[] = {
Joe Hershbergerc617ede2015-05-20 14:27:28 -050048 U_BOOT_CMD_MKENT(all, CONFIG_SYS_MAXARGS, 1, do_ut_all, "", ""),
Joe Hershberger40441e02015-05-20 14:27:29 -050049#if defined(CONFIG_UT_DM)
50 U_BOOT_CMD_MKENT(dm, CONFIG_SYS_MAXARGS, 1, do_ut_dm, "", ""),
51#endif
Joe Hershberger421f86f2015-05-20 14:27:36 -050052#if defined(CONFIG_UT_ENV)
53 U_BOOT_CMD_MKENT(env, CONFIG_SYS_MAXARGS, 1, do_ut_env, "", ""),
54#endif
Heiko Stuebner96383bd2019-10-23 16:46:41 +020055#ifdef CONFIG_UT_OPTEE
56 U_BOOT_CMD_MKENT(optee, CONFIG_SYS_MAXARGS, 1, do_ut_optee, "", ""),
57#endif
Maxime Ripardf2a99422016-07-05 10:26:46 +020058#ifdef CONFIG_UT_OVERLAY
59 U_BOOT_CMD_MKENT(overlay, CONFIG_SYS_MAXARGS, 1, do_ut_overlay, "", ""),
60#endif
Heinrich Schuchardt2dd01112019-01-30 07:53:31 +010061#ifdef CONFIG_UT_LIB
62 U_BOOT_CMD_MKENT(lib, CONFIG_SYS_MAXARGS, 1, do_ut_lib, "", ""),
63#endif
Heinrich Schuchardt395041b2020-02-26 21:48:18 +010064#ifdef CONFIG_UT_LOG
65 U_BOOT_CMD_MKENT(log, CONFIG_SYS_MAXARGS, 1, do_ut_log, "", ""),
66#endif
Joe Hershbergerc812f722015-05-20 14:27:30 -050067#ifdef CONFIG_UT_TIME
68 U_BOOT_CMD_MKENT(time, CONFIG_SYS_MAXARGS, 1, do_ut_time, "", ""),
69#endif
Heinrich Schuchardtf11a1642018-08-31 21:31:28 +020070#if CONFIG_IS_ENABLED(UT_UNICODE) && !defined(API_BUILD)
71 U_BOOT_CMD_MKENT(unicode, CONFIG_SYS_MAXARGS, 1, do_ut_unicode, "", ""),
72#endif
Simon Glass0aac10f2017-11-25 11:57:33 -070073#ifdef CONFIG_SANDBOX
74 U_BOOT_CMD_MKENT(compression, CONFIG_SYS_MAXARGS, 1, do_ut_compression,
75 "", ""),
Simon Glass919e7a82018-11-15 18:43:53 -070076 U_BOOT_CMD_MKENT(bloblist, CONFIG_SYS_MAXARGS, 1, do_ut_bloblist,
77 "", ""),
Simon Glass4f04d542020-04-08 08:32:55 -060078 U_BOOT_CMD_MKENT(str, CONFIG_SYS_MAXARGS, 1, do_ut_str,
79 "", ""),
Simon Glass0aac10f2017-11-25 11:57:33 -070080#endif
Joe Hershbergerc617ede2015-05-20 14:27:28 -050081};
82
Simon Glass09140112020-05-10 11:40:03 -060083static int do_ut_all(struct cmd_tbl *cmdtp, int flag, int argc,
84 char *const argv[])
Joe Hershbergerc617ede2015-05-20 14:27:28 -050085{
86 int i;
87 int retval;
88 int any_fail = 0;
89
90 for (i = 1; i < ARRAY_SIZE(cmd_ut_sub); i++) {
91 printf("----Running %s tests----\n", cmd_ut_sub[i].name);
92 retval = cmd_ut_sub[i].cmd(cmdtp, flag, 1, &cmd_ut_sub[i].name);
93 if (!any_fail)
94 any_fail = retval;
95 }
96
97 return any_fail;
98}
99
Simon Glass09140112020-05-10 11:40:03 -0600100static int do_ut(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
Joe Hershbergerc617ede2015-05-20 14:27:28 -0500101{
Simon Glass09140112020-05-10 11:40:03 -0600102 struct cmd_tbl *cp;
Joe Hershbergerc617ede2015-05-20 14:27:28 -0500103
104 if (argc < 2)
105 return CMD_RET_USAGE;
106
107 /* drop initial "ut" arg */
108 argc--;
109 argv++;
110
111 cp = find_cmd_tbl(argv[0], cmd_ut_sub, ARRAY_SIZE(cmd_ut_sub));
112
113 if (cp)
114 return cp->cmd(cmdtp, flag, argc, argv);
115
116 return CMD_RET_USAGE;
117}
118
119#ifdef CONFIG_SYS_LONGHELP
120static char ut_help_text[] =
121 "all - execute all enabled tests\n"
Heinrich Schuchardtf11a1642018-08-31 21:31:28 +0200122#ifdef CONFIG_SANDBOX
Simon Glass919e7a82018-11-15 18:43:53 -0700123 "ut bloblist - Test bloblist implementation\n"
Heinrich Schuchardtf11a1642018-08-31 21:31:28 +0200124 "ut compression - Test compressors and bootm decompression\n"
125#endif
Joe Hershberger40441e02015-05-20 14:27:29 -0500126#ifdef CONFIG_UT_DM
127 "ut dm [test-name]\n"
128#endif
Joe Hershberger421f86f2015-05-20 14:27:36 -0500129#ifdef CONFIG_UT_ENV
130 "ut env [test-name]\n"
131#endif
Heinrich Schuchardt2dd01112019-01-30 07:53:31 +0100132#ifdef CONFIG_UT_LIB
133 "ut lib [test-name] - test library functions\n"
134#endif
Heinrich Schuchardt395041b2020-02-26 21:48:18 +0100135#ifdef CONFIG_UT_LOG
136 "ut log [test-name] - test logging functions\n"
137#endif
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 Glass4f04d542020-04-08 08:32:55 -0600144#ifdef CONFIG_SANDBOX
145 "ut str - Basic test of string functions\n"
146#endif
Joe Hershbergerc812f722015-05-20 14:27:30 -0500147#ifdef CONFIG_UT_TIME
148 "ut time - Very basic test of time functions\n"
149#endif
Heinrich Schuchardtf11a1642018-08-31 21:31:28 +0200150#if defined(CONFIG_UT_UNICODE) && \
151 !defined(CONFIG_SPL_BUILD) && !defined(API_BUILD)
152 "ut unicode [test-name] - test Unicode functions\n"
Simon Glass0aac10f2017-11-25 11:57:33 -0700153#endif
Joe Hershbergerc617ede2015-05-20 14:27:28 -0500154 ;
Heinrich Schuchardtf11a1642018-08-31 21:31:28 +0200155#endif /* CONFIG_SYS_LONGHELP */
Joe Hershbergerc617ede2015-05-20 14:27:28 -0500156
157U_BOOT_CMD(
158 ut, CONFIG_SYS_MAXARGS, 1, do_ut,
159 "unit tests", ut_help_text
160);