Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Joe Hershberger | c617ede | 2015-05-20 14:27:28 -0500 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2015 |
| 4 | * Joe Hershberger, National Instruments, joe.hershberger@ni.com |
Joe Hershberger | c617ede | 2015-05-20 14:27:28 -0500 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include <common.h> |
| 8 | #include <command.h> |
Simon Glass | 132644f | 2020-07-28 19:41:13 -0600 | [diff] [blame] | 9 | #include <console.h> |
Joe Hershberger | c617ede | 2015-05-20 14:27:28 -0500 | [diff] [blame] | 10 | #include <test/suites.h> |
Simon Glass | 4d869c1 | 2017-11-25 11:57:29 -0700 | [diff] [blame] | 11 | #include <test/test.h> |
Joe Hershberger | c617ede | 2015-05-20 14:27:28 -0500 | [diff] [blame] | 12 | |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 13 | static int do_ut_all(struct cmd_tbl *cmdtp, int flag, int argc, |
| 14 | char *const argv[]); |
Joe Hershberger | c617ede | 2015-05-20 14:27:28 -0500 | [diff] [blame] | 15 | |
Philippe Reynes | 4ad4edf | 2019-12-17 19:07:04 +0100 | [diff] [blame] | 16 | int cmd_ut_category(const char *name, const char *prefix, |
| 17 | struct unit_test *tests, int n_ents, |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 18 | int argc, char *const argv[]) |
Simon Glass | 4d869c1 | 2017-11-25 11:57:29 -0700 | [diff] [blame] | 19 | { |
| 20 | struct unit_test_state uts = { .fail_count = 0 }; |
| 21 | struct unit_test *test; |
Philippe Reynes | 4ad4edf | 2019-12-17 19:07:04 +0100 | [diff] [blame] | 22 | int prefix_len = prefix ? strlen(prefix) : 0; |
Simon Glass | 4d869c1 | 2017-11-25 11:57:29 -0700 | [diff] [blame] | 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++) { |
Philippe Reynes | 4ad4edf | 2019-12-17 19:07:04 +0100 | [diff] [blame] | 28 | const char *test_name = test->name; |
| 29 | |
| 30 | /* Remove the prefix */ |
Philippe Reynes | 3f05f08 | 2020-01-09 17:34:02 +0100 | [diff] [blame] | 31 | if (prefix && !strncmp(test_name, prefix, prefix_len)) |
Philippe Reynes | 4ad4edf | 2019-12-17 19:07:04 +0100 | [diff] [blame] | 32 | test_name += prefix_len; |
| 33 | |
| 34 | if (argc > 1 && strcmp(argv[1], test_name)) |
Simon Glass | 4d869c1 | 2017-11-25 11:57:29 -0700 | [diff] [blame] | 35 | continue; |
| 36 | printf("Test: %s\n", test->name); |
| 37 | |
Simon Glass | 132644f | 2020-07-28 19:41:13 -0600 | [diff] [blame] | 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 | |
Simon Glass | 4d869c1 | 2017-11-25 11:57:29 -0700 | [diff] [blame] | 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 | |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 57 | static struct cmd_tbl cmd_ut_sub[] = { |
Joe Hershberger | c617ede | 2015-05-20 14:27:28 -0500 | [diff] [blame] | 58 | U_BOOT_CMD_MKENT(all, CONFIG_SYS_MAXARGS, 1, do_ut_all, "", ""), |
Joe Hershberger | 40441e0 | 2015-05-20 14:27:29 -0500 | [diff] [blame] | 59 | #if defined(CONFIG_UT_DM) |
| 60 | U_BOOT_CMD_MKENT(dm, CONFIG_SYS_MAXARGS, 1, do_ut_dm, "", ""), |
| 61 | #endif |
Joe Hershberger | 421f86f | 2015-05-20 14:27:36 -0500 | [diff] [blame] | 62 | #if defined(CONFIG_UT_ENV) |
| 63 | U_BOOT_CMD_MKENT(env, CONFIG_SYS_MAXARGS, 1, do_ut_env, "", ""), |
| 64 | #endif |
Heiko Stuebner | 96383bd | 2019-10-23 16:46:41 +0200 | [diff] [blame] | 65 | #ifdef CONFIG_UT_OPTEE |
| 66 | U_BOOT_CMD_MKENT(optee, CONFIG_SYS_MAXARGS, 1, do_ut_optee, "", ""), |
| 67 | #endif |
Maxime Ripard | f2a9942 | 2016-07-05 10:26:46 +0200 | [diff] [blame] | 68 | #ifdef CONFIG_UT_OVERLAY |
| 69 | U_BOOT_CMD_MKENT(overlay, CONFIG_SYS_MAXARGS, 1, do_ut_overlay, "", ""), |
| 70 | #endif |
Heinrich Schuchardt | 2dd0111 | 2019-01-30 07:53:31 +0100 | [diff] [blame] | 71 | #ifdef CONFIG_UT_LIB |
| 72 | U_BOOT_CMD_MKENT(lib, CONFIG_SYS_MAXARGS, 1, do_ut_lib, "", ""), |
| 73 | #endif |
Heinrich Schuchardt | 395041b | 2020-02-26 21:48:18 +0100 | [diff] [blame] | 74 | #ifdef CONFIG_UT_LOG |
| 75 | U_BOOT_CMD_MKENT(log, CONFIG_SYS_MAXARGS, 1, do_ut_log, "", ""), |
| 76 | #endif |
Simon Glass | 550a9e7 | 2020-07-28 19:41:14 -0600 | [diff] [blame] | 77 | U_BOOT_CMD_MKENT(mem, CONFIG_SYS_MAXARGS, 1, do_ut_mem, "", ""), |
Heinrich Schuchardt | d5f8530 | 2021-02-17 12:58:14 +0100 | [diff] [blame] | 78 | #ifdef CONFIG_CMD_SETEXPR |
Simon Glass | 90a9901 | 2020-11-01 14:15:35 -0700 | [diff] [blame] | 79 | U_BOOT_CMD_MKENT(setexpr, CONFIG_SYS_MAXARGS, 1, do_ut_setexpr, "", |
| 80 | ""), |
Heinrich Schuchardt | d5f8530 | 2021-02-17 12:58:14 +0100 | [diff] [blame] | 81 | #endif |
Joe Hershberger | c812f72 | 2015-05-20 14:27:30 -0500 | [diff] [blame] | 82 | #ifdef CONFIG_UT_TIME |
| 83 | U_BOOT_CMD_MKENT(time, CONFIG_SYS_MAXARGS, 1, do_ut_time, "", ""), |
| 84 | #endif |
Heinrich Schuchardt | f11a164 | 2018-08-31 21:31:28 +0200 | [diff] [blame] | 85 | #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 Glass | 0aac10f | 2017-11-25 11:57:33 -0700 | [diff] [blame] | 88 | #ifdef CONFIG_SANDBOX |
| 89 | U_BOOT_CMD_MKENT(compression, CONFIG_SYS_MAXARGS, 1, do_ut_compression, |
| 90 | "", ""), |
Simon Glass | 919e7a8 | 2018-11-15 18:43:53 -0700 | [diff] [blame] | 91 | U_BOOT_CMD_MKENT(bloblist, CONFIG_SYS_MAXARGS, 1, do_ut_bloblist, |
| 92 | "", ""), |
Simon Glass | f158ba1 | 2020-11-05 10:33:38 -0700 | [diff] [blame] | 93 | U_BOOT_CMD_MKENT(bootm, CONFIG_SYS_MAXARGS, 1, do_ut_bootm, "", ""), |
Simon Glass | 0aac10f | 2017-11-25 11:57:33 -0700 | [diff] [blame] | 94 | #endif |
Heinrich Schuchardt | 9d43b41 | 2021-01-18 00:17:34 +0100 | [diff] [blame] | 95 | U_BOOT_CMD_MKENT(str, CONFIG_SYS_MAXARGS, 1, do_ut_str, "", ""), |
Bin Meng | ea30921 | 2021-02-25 17:22:35 +0800 | [diff] [blame] | 96 | #ifdef CONFIG_CMD_ADDRMAP |
| 97 | U_BOOT_CMD_MKENT(addrmap, CONFIG_SYS_MAXARGS, 1, do_ut_addrmap, "", ""), |
| 98 | #endif |
Joe Hershberger | c617ede | 2015-05-20 14:27:28 -0500 | [diff] [blame] | 99 | }; |
| 100 | |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 101 | static int do_ut_all(struct cmd_tbl *cmdtp, int flag, int argc, |
| 102 | char *const argv[]) |
Joe Hershberger | c617ede | 2015-05-20 14:27:28 -0500 | [diff] [blame] | 103 | { |
| 104 | int i; |
| 105 | int retval; |
| 106 | int any_fail = 0; |
| 107 | |
| 108 | for (i = 1; i < ARRAY_SIZE(cmd_ut_sub); i++) { |
| 109 | printf("----Running %s tests----\n", cmd_ut_sub[i].name); |
| 110 | retval = cmd_ut_sub[i].cmd(cmdtp, flag, 1, &cmd_ut_sub[i].name); |
| 111 | if (!any_fail) |
| 112 | any_fail = retval; |
| 113 | } |
| 114 | |
| 115 | return any_fail; |
| 116 | } |
| 117 | |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 118 | static int do_ut(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]) |
Joe Hershberger | c617ede | 2015-05-20 14:27:28 -0500 | [diff] [blame] | 119 | { |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 120 | struct cmd_tbl *cp; |
Joe Hershberger | c617ede | 2015-05-20 14:27:28 -0500 | [diff] [blame] | 121 | |
| 122 | if (argc < 2) |
| 123 | return CMD_RET_USAGE; |
| 124 | |
| 125 | /* drop initial "ut" arg */ |
| 126 | argc--; |
| 127 | argv++; |
| 128 | |
| 129 | cp = find_cmd_tbl(argv[0], cmd_ut_sub, ARRAY_SIZE(cmd_ut_sub)); |
| 130 | |
| 131 | if (cp) |
| 132 | return cp->cmd(cmdtp, flag, argc, argv); |
| 133 | |
| 134 | return CMD_RET_USAGE; |
| 135 | } |
| 136 | |
| 137 | #ifdef CONFIG_SYS_LONGHELP |
| 138 | static char ut_help_text[] = |
| 139 | "all - execute all enabled tests\n" |
Heinrich Schuchardt | f11a164 | 2018-08-31 21:31:28 +0200 | [diff] [blame] | 140 | #ifdef CONFIG_SANDBOX |
Simon Glass | 919e7a8 | 2018-11-15 18:43:53 -0700 | [diff] [blame] | 141 | "ut bloblist - Test bloblist implementation\n" |
Heinrich Schuchardt | f11a164 | 2018-08-31 21:31:28 +0200 | [diff] [blame] | 142 | "ut compression - Test compressors and bootm decompression\n" |
| 143 | #endif |
Joe Hershberger | 40441e0 | 2015-05-20 14:27:29 -0500 | [diff] [blame] | 144 | #ifdef CONFIG_UT_DM |
| 145 | "ut dm [test-name]\n" |
| 146 | #endif |
Joe Hershberger | 421f86f | 2015-05-20 14:27:36 -0500 | [diff] [blame] | 147 | #ifdef CONFIG_UT_ENV |
| 148 | "ut env [test-name]\n" |
| 149 | #endif |
Heinrich Schuchardt | 2dd0111 | 2019-01-30 07:53:31 +0100 | [diff] [blame] | 150 | #ifdef CONFIG_UT_LIB |
| 151 | "ut lib [test-name] - test library functions\n" |
| 152 | #endif |
Heinrich Schuchardt | 395041b | 2020-02-26 21:48:18 +0100 | [diff] [blame] | 153 | #ifdef CONFIG_UT_LOG |
| 154 | "ut log [test-name] - test logging functions\n" |
| 155 | #endif |
Simon Glass | 550a9e7 | 2020-07-28 19:41:14 -0600 | [diff] [blame] | 156 | "ut mem [test-name] - test memory-related commands\n" |
Heiko Stuebner | 96383bd | 2019-10-23 16:46:41 +0200 | [diff] [blame] | 157 | #ifdef CONFIG_UT_OPTEE |
| 158 | "ut optee [test-name]\n" |
| 159 | #endif |
Maxime Ripard | f2a9942 | 2016-07-05 10:26:46 +0200 | [diff] [blame] | 160 | #ifdef CONFIG_UT_OVERLAY |
| 161 | "ut overlay [test-name]\n" |
| 162 | #endif |
Simon Glass | 90a9901 | 2020-11-01 14:15:35 -0700 | [diff] [blame] | 163 | "ut setexpr [test-name] - test setexpr command\n" |
Simon Glass | 4f04d54 | 2020-04-08 08:32:55 -0600 | [diff] [blame] | 164 | #ifdef CONFIG_SANDBOX |
| 165 | "ut str - Basic test of string functions\n" |
| 166 | #endif |
Joe Hershberger | c812f72 | 2015-05-20 14:27:30 -0500 | [diff] [blame] | 167 | #ifdef CONFIG_UT_TIME |
| 168 | "ut time - Very basic test of time functions\n" |
| 169 | #endif |
Heinrich Schuchardt | f11a164 | 2018-08-31 21:31:28 +0200 | [diff] [blame] | 170 | #if defined(CONFIG_UT_UNICODE) && \ |
| 171 | !defined(CONFIG_SPL_BUILD) && !defined(API_BUILD) |
| 172 | "ut unicode [test-name] - test Unicode functions\n" |
Simon Glass | 0aac10f | 2017-11-25 11:57:33 -0700 | [diff] [blame] | 173 | #endif |
Bin Meng | ea30921 | 2021-02-25 17:22:35 +0800 | [diff] [blame] | 174 | #ifdef CONFIG_CMD_ADDRMAP |
| 175 | "ut addrmap - Very basic test of addrmap command\n" |
| 176 | #endif |
Joe Hershberger | c617ede | 2015-05-20 14:27:28 -0500 | [diff] [blame] | 177 | ; |
Heinrich Schuchardt | f11a164 | 2018-08-31 21:31:28 +0200 | [diff] [blame] | 178 | #endif /* CONFIG_SYS_LONGHELP */ |
Joe Hershberger | c617ede | 2015-05-20 14:27:28 -0500 | [diff] [blame] | 179 | |
| 180 | U_BOOT_CMD( |
| 181 | ut, CONFIG_SYS_MAXARGS, 1, do_ut, |
| 182 | "unit tests", ut_help_text |
| 183 | ); |