]>
Commit | Line | Data |
---|---|---|
83d290c5 | 1 | // SPDX-License-Identifier: GPL-2.0 |
c617ede0 JH |
2 | /* |
3 | * (C) Copyright 2015 | |
4 | * Joe Hershberger, National Instruments, [email protected] | |
c617ede0 JH |
5 | */ |
6 | ||
7 | #include <common.h> | |
8 | #include <command.h> | |
9 | #include <test/suites.h> | |
4d869c1e | 10 | #include <test/test.h> |
c617ede0 JH |
11 | |
12 | static int do_ut_all(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]); | |
13 | ||
4ad4edfe PR |
14 | int cmd_ut_category(const char *name, const char *prefix, |
15 | struct unit_test *tests, int n_ents, | |
4d869c1e SG |
16 | int argc, char * const argv[]) |
17 | { | |
18 | struct unit_test_state uts = { .fail_count = 0 }; | |
19 | struct unit_test *test; | |
4ad4edfe | 20 | int prefix_len = prefix ? strlen(prefix) : 0; |
4d869c1e SG |
21 | |
22 | if (argc == 1) | |
23 | printf("Running %d %s tests\n", n_ents, name); | |
24 | ||
25 | for (test = tests; test < tests + n_ents; test++) { | |
4ad4edfe PR |
26 | const char *test_name = test->name; |
27 | ||
28 | /* Remove the prefix */ | |
3f05f087 | 29 | if (prefix && !strncmp(test_name, prefix, prefix_len)) |
4ad4edfe PR |
30 | test_name += prefix_len; |
31 | ||
32 | if (argc > 1 && strcmp(argv[1], test_name)) | |
4d869c1e SG |
33 | 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 | ||
c617ede0 JH |
46 | static cmd_tbl_t cmd_ut_sub[] = { |
47 | U_BOOT_CMD_MKENT(all, CONFIG_SYS_MAXARGS, 1, do_ut_all, "", ""), | |
40441e0b JH |
48 | #if defined(CONFIG_UT_DM) |
49 | U_BOOT_CMD_MKENT(dm, CONFIG_SYS_MAXARGS, 1, do_ut_dm, "", ""), | |
50 | #endif | |
421f86f3 JH |
51 | #if defined(CONFIG_UT_ENV) |
52 | U_BOOT_CMD_MKENT(env, CONFIG_SYS_MAXARGS, 1, do_ut_env, "", ""), | |
53 | #endif | |
96383bdf HS |
54 | #ifdef CONFIG_UT_OPTEE |
55 | U_BOOT_CMD_MKENT(optee, CONFIG_SYS_MAXARGS, 1, do_ut_optee, "", ""), | |
56 | #endif | |
f2a9942f MR |
57 | #ifdef CONFIG_UT_OVERLAY |
58 | U_BOOT_CMD_MKENT(overlay, CONFIG_SYS_MAXARGS, 1, do_ut_overlay, "", ""), | |
59 | #endif | |
2dd0111a HS |
60 | #ifdef CONFIG_UT_LIB |
61 | U_BOOT_CMD_MKENT(lib, CONFIG_SYS_MAXARGS, 1, do_ut_lib, "", ""), | |
62 | #endif | |
c812f722 JH |
63 | #ifdef CONFIG_UT_TIME |
64 | U_BOOT_CMD_MKENT(time, CONFIG_SYS_MAXARGS, 1, do_ut_time, "", ""), | |
65 | #endif | |
f11a164b HS |
66 | #if CONFIG_IS_ENABLED(UT_UNICODE) && !defined(API_BUILD) |
67 | U_BOOT_CMD_MKENT(unicode, CONFIG_SYS_MAXARGS, 1, do_ut_unicode, "", ""), | |
68 | #endif | |
0aac10f2 SG |
69 | #ifdef CONFIG_SANDBOX |
70 | U_BOOT_CMD_MKENT(compression, CONFIG_SYS_MAXARGS, 1, do_ut_compression, | |
71 | "", ""), | |
919e7a8f SG |
72 | U_BOOT_CMD_MKENT(bloblist, CONFIG_SYS_MAXARGS, 1, do_ut_bloblist, |
73 | "", ""), | |
0aac10f2 | 74 | #endif |
c617ede0 JH |
75 | }; |
76 | ||
77 | static int do_ut_all(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) | |
78 | { | |
79 | int i; | |
80 | int retval; | |
81 | int any_fail = 0; | |
82 | ||
83 | for (i = 1; i < ARRAY_SIZE(cmd_ut_sub); i++) { | |
84 | printf("----Running %s tests----\n", cmd_ut_sub[i].name); | |
85 | retval = cmd_ut_sub[i].cmd(cmdtp, flag, 1, &cmd_ut_sub[i].name); | |
86 | if (!any_fail) | |
87 | any_fail = retval; | |
88 | } | |
89 | ||
90 | return any_fail; | |
91 | } | |
92 | ||
93 | static int do_ut(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) | |
94 | { | |
95 | cmd_tbl_t *cp; | |
96 | ||
97 | if (argc < 2) | |
98 | return CMD_RET_USAGE; | |
99 | ||
100 | /* drop initial "ut" arg */ | |
101 | argc--; | |
102 | argv++; | |
103 | ||
104 | cp = find_cmd_tbl(argv[0], cmd_ut_sub, ARRAY_SIZE(cmd_ut_sub)); | |
105 | ||
106 | if (cp) | |
107 | return cp->cmd(cmdtp, flag, argc, argv); | |
108 | ||
109 | return CMD_RET_USAGE; | |
110 | } | |
111 | ||
112 | #ifdef CONFIG_SYS_LONGHELP | |
113 | static char ut_help_text[] = | |
114 | "all - execute all enabled tests\n" | |
f11a164b | 115 | #ifdef CONFIG_SANDBOX |
919e7a8f | 116 | "ut bloblist - Test bloblist implementation\n" |
f11a164b HS |
117 | "ut compression - Test compressors and bootm decompression\n" |
118 | #endif | |
40441e0b JH |
119 | #ifdef CONFIG_UT_DM |
120 | "ut dm [test-name]\n" | |
c812f722 | 121 | #endif |
421f86f3 JH |
122 | #ifdef CONFIG_UT_ENV |
123 | "ut env [test-name]\n" | |
124 | #endif | |
2dd0111a HS |
125 | #ifdef CONFIG_UT_LIB |
126 | "ut lib [test-name] - test library functions\n" | |
127 | #endif | |
96383bdf HS |
128 | #ifdef CONFIG_UT_OPTEE |
129 | "ut optee [test-name]\n" | |
130 | #endif | |
f2a9942f MR |
131 | #ifdef CONFIG_UT_OVERLAY |
132 | "ut overlay [test-name]\n" | |
133 | #endif | |
c812f722 JH |
134 | #ifdef CONFIG_UT_TIME |
135 | "ut time - Very basic test of time functions\n" | |
0aac10f2 | 136 | #endif |
f11a164b HS |
137 | #if defined(CONFIG_UT_UNICODE) && \ |
138 | !defined(CONFIG_SPL_BUILD) && !defined(API_BUILD) | |
139 | "ut unicode [test-name] - test Unicode functions\n" | |
40441e0b | 140 | #endif |
c617ede0 | 141 | ; |
f11a164b | 142 | #endif /* CONFIG_SYS_LONGHELP */ |
c617ede0 JH |
143 | |
144 | U_BOOT_CMD( | |
145 | ut, CONFIG_SYS_MAXARGS, 1, do_ut, | |
146 | "unit tests", ut_help_text | |
147 | ); |