Simon Glass | 1c72175 | 2021-03-07 17:34:47 -0700 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
| 2 | /* |
| 3 | * Copyright 2021 Google LLC |
| 4 | * Written by Simon Glass <sjg@chromium.org> |
| 5 | */ |
| 6 | |
| 7 | #include <common.h> |
| 8 | #include <console.h> |
Stefan Roese | af042c2 | 2022-09-02 13:57:54 +0200 | [diff] [blame] | 9 | #include <cyclic.h> |
Simon Glass | d8ed234 | 2021-03-07 17:34:50 -0700 | [diff] [blame] | 10 | #include <dm.h> |
Simon Glass | 7d02645 | 2022-03-04 08:43:01 -0700 | [diff] [blame] | 11 | #include <event.h> |
Simon Glass | d8ed234 | 2021-03-07 17:34:50 -0700 | [diff] [blame] | 12 | #include <dm/root.h> |
Simon Glass | c79705e | 2021-03-07 17:34:58 -0700 | [diff] [blame] | 13 | #include <dm/test.h> |
Simon Glass | e77615d | 2021-03-07 17:34:59 -0700 | [diff] [blame] | 14 | #include <dm/uclass-internal.h> |
Simon Glass | 1c72175 | 2021-03-07 17:34:47 -0700 | [diff] [blame] | 15 | #include <test/test.h> |
Simon Glass | d8ed234 | 2021-03-07 17:34:50 -0700 | [diff] [blame] | 16 | #include <test/ut.h> |
Simon Glass | 1c72175 | 2021-03-07 17:34:47 -0700 | [diff] [blame] | 17 | |
Simon Glass | 30a0d20 | 2021-03-07 17:34:49 -0700 | [diff] [blame] | 18 | DECLARE_GLOBAL_DATA_PTR; |
| 19 | |
Simon Glass | fe80686 | 2021-03-07 17:35:04 -0700 | [diff] [blame] | 20 | /* This is valid when a test is running, NULL otherwise */ |
| 21 | static struct unit_test_state *cur_test_state; |
| 22 | |
| 23 | struct unit_test_state *test_get_state(void) |
| 24 | { |
| 25 | return cur_test_state; |
| 26 | } |
| 27 | |
| 28 | void test_set_state(struct unit_test_state *uts) |
| 29 | { |
| 30 | cur_test_state = uts; |
| 31 | } |
| 32 | |
Simon Glass | c79705e | 2021-03-07 17:34:58 -0700 | [diff] [blame] | 33 | /** |
| 34 | * dm_test_pre_run() - Get ready to run a driver model test |
| 35 | * |
| 36 | * This clears out the driver model data structures. For sandbox it resets the |
| 37 | * state structure |
| 38 | * |
| 39 | * @uts: Test state |
| 40 | */ |
| 41 | static int dm_test_pre_run(struct unit_test_state *uts) |
| 42 | { |
| 43 | bool of_live = uts->of_live; |
| 44 | |
| 45 | uts->root = NULL; |
| 46 | uts->testdev = NULL; |
| 47 | uts->force_fail_alloc = false; |
| 48 | uts->skip_post_probe = false; |
| 49 | gd->dm_root = NULL; |
Simon Glass | 719d286 | 2021-07-05 16:32:43 -0600 | [diff] [blame] | 50 | if (CONFIG_IS_ENABLED(UT_DM) && !CONFIG_IS_ENABLED(OF_PLATDATA)) |
Simon Glass | c79705e | 2021-03-07 17:34:58 -0700 | [diff] [blame] | 51 | memset(dm_testdrv_op_count, '\0', sizeof(dm_testdrv_op_count)); |
Simon Glass | d4a1592 | 2021-03-25 10:44:33 +1300 | [diff] [blame] | 52 | arch_reset_for_test(); |
Simon Glass | c79705e | 2021-03-07 17:34:58 -0700 | [diff] [blame] | 53 | |
| 54 | /* Determine whether to make the live tree available */ |
| 55 | gd_set_of_root(of_live ? uts->of_root : NULL); |
| 56 | ut_assertok(dm_init(of_live)); |
| 57 | uts->root = dm_root(); |
| 58 | |
| 59 | return 0; |
| 60 | } |
| 61 | |
Simon Glass | e77615d | 2021-03-07 17:34:59 -0700 | [diff] [blame] | 62 | static int dm_test_post_run(struct unit_test_state *uts) |
| 63 | { |
| 64 | int id; |
| 65 | |
Simon Glass | e8c023c | 2021-03-15 17:25:21 +1300 | [diff] [blame] | 66 | /* |
| 67 | * With of-platdata-inst the uclasses are created at build time. If we |
| 68 | * destroy them we cannot get them back since uclass_add() is not |
| 69 | * supported. So skip this. |
| 70 | */ |
| 71 | if (!CONFIG_IS_ENABLED(OF_PLATDATA_INST)) { |
| 72 | for (id = 0; id < UCLASS_COUNT; id++) { |
| 73 | struct uclass *uc; |
Simon Glass | e77615d | 2021-03-07 17:34:59 -0700 | [diff] [blame] | 74 | |
Simon Glass | e8c023c | 2021-03-15 17:25:21 +1300 | [diff] [blame] | 75 | /* |
| 76 | * If the uclass doesn't exist we don't want to create |
| 77 | * it. So check that here before we call |
| 78 | * uclass_find_device(). |
| 79 | */ |
| 80 | uc = uclass_find(id); |
| 81 | if (!uc) |
| 82 | continue; |
| 83 | ut_assertok(uclass_destroy(uc)); |
| 84 | } |
Simon Glass | e77615d | 2021-03-07 17:34:59 -0700 | [diff] [blame] | 85 | } |
| 86 | |
| 87 | return 0; |
| 88 | } |
| 89 | |
Simon Glass | 4b8b27e | 2021-03-07 17:34:51 -0700 | [diff] [blame] | 90 | /* Ensure all the test devices are probed */ |
| 91 | static int do_autoprobe(struct unit_test_state *uts) |
| 92 | { |
| 93 | struct udevice *dev; |
| 94 | int ret; |
| 95 | |
| 96 | /* Scanning the uclass is enough to probe all the devices */ |
| 97 | for (ret = uclass_first_device(UCLASS_TEST, &dev); |
| 98 | dev; |
| 99 | ret = uclass_next_device(&dev)) |
| 100 | ; |
| 101 | |
| 102 | return ret; |
| 103 | } |
| 104 | |
Simon Glass | d2281bb | 2021-03-07 17:35:03 -0700 | [diff] [blame] | 105 | /* |
| 106 | * ut_test_run_on_flattree() - Check if we should run a test with flat DT |
| 107 | * |
| 108 | * This skips long/slow tests where there is not much value in running a flat |
| 109 | * DT test in addition to a live DT test. |
| 110 | * |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 111 | * Return: true to run the given test on the flat device tree |
Simon Glass | d2281bb | 2021-03-07 17:35:03 -0700 | [diff] [blame] | 112 | */ |
| 113 | static bool ut_test_run_on_flattree(struct unit_test *test) |
| 114 | { |
| 115 | const char *fname = strrchr(test->file, '/') + 1; |
| 116 | |
| 117 | if (!(test->flags & UT_TESTF_DM)) |
| 118 | return false; |
| 119 | |
| 120 | return !strstr(fname, "video") || strstr(test->name, "video_base"); |
| 121 | } |
| 122 | |
Simon Glass | ca44ca0 | 2021-03-07 17:35:01 -0700 | [diff] [blame] | 123 | /** |
Simon Glass | f97f85e | 2021-03-07 17:35:05 -0700 | [diff] [blame] | 124 | * test_matches() - Check if a test should be run |
| 125 | * |
| 126 | * This checks if the a test should be run. In the normal case of running all |
| 127 | * tests, @select_name is NULL. |
| 128 | * |
| 129 | * @prefix: String prefix for the tests. Any tests that have this prefix will be |
| 130 | * printed without the prefix, so that it is easier to see the unique part |
Simon Glass | 8482356 | 2021-03-07 17:35:12 -0700 | [diff] [blame] | 131 | * of the test name. If NULL, any suite name (xxx_test) is considered to be |
| 132 | * a prefix. |
Simon Glass | f97f85e | 2021-03-07 17:35:05 -0700 | [diff] [blame] | 133 | * @test_name: Name of current test |
| 134 | * @select_name: Name of test to run (or NULL for all) |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 135 | * Return: true to run this test, false to skip it |
Simon Glass | f97f85e | 2021-03-07 17:35:05 -0700 | [diff] [blame] | 136 | */ |
| 137 | static bool test_matches(const char *prefix, const char *test_name, |
| 138 | const char *select_name) |
| 139 | { |
Andy Shevchenko | ff232a7 | 2021-02-11 16:40:10 +0200 | [diff] [blame] | 140 | size_t len; |
| 141 | |
Simon Glass | f97f85e | 2021-03-07 17:35:05 -0700 | [diff] [blame] | 142 | if (!select_name) |
| 143 | return true; |
| 144 | |
Andy Shevchenko | ff232a7 | 2021-02-11 16:40:10 +0200 | [diff] [blame] | 145 | /* Allow glob expansion in the test name */ |
| 146 | len = select_name[strlen(select_name) - 1] == '*' ? strlen(select_name) : 0; |
| 147 | if (len-- == 1) |
| 148 | return true; |
| 149 | |
| 150 | if (!strncmp(test_name, select_name, len)) |
Simon Glass | f97f85e | 2021-03-07 17:35:05 -0700 | [diff] [blame] | 151 | return true; |
| 152 | |
Andy Shevchenko | 494a5e1 | 2021-02-11 16:40:11 +0200 | [diff] [blame] | 153 | if (prefix) { |
| 154 | /* All tests have this prefix */ |
| 155 | if (!strncmp(test_name, prefix, strlen(prefix))) |
| 156 | test_name += strlen(prefix); |
| 157 | } else { |
Simon Glass | 8482356 | 2021-03-07 17:35:12 -0700 | [diff] [blame] | 158 | const char *p = strstr(test_name, "_test_"); |
| 159 | |
| 160 | /* convert xxx_test_yyy to yyy, i.e. remove the suite name */ |
| 161 | if (p) |
Andy Shevchenko | 494a5e1 | 2021-02-11 16:40:11 +0200 | [diff] [blame] | 162 | test_name = p + strlen("_test_"); |
Simon Glass | 8482356 | 2021-03-07 17:35:12 -0700 | [diff] [blame] | 163 | } |
Simon Glass | f97f85e | 2021-03-07 17:35:05 -0700 | [diff] [blame] | 164 | |
Andy Shevchenko | ff232a7 | 2021-02-11 16:40:10 +0200 | [diff] [blame] | 165 | if (!strncmp(test_name, select_name, len)) |
Simon Glass | f97f85e | 2021-03-07 17:35:05 -0700 | [diff] [blame] | 166 | return true; |
| 167 | |
| 168 | return false; |
| 169 | } |
| 170 | |
Simon Glass | 664277f | 2021-03-07 17:35:08 -0700 | [diff] [blame] | 171 | /** |
Simon Glass | 1fc9c12 | 2021-03-07 17:35:07 -0700 | [diff] [blame] | 172 | * ut_list_has_dm_tests() - Check if a list of tests has driver model ones |
| 173 | * |
| 174 | * @tests: List of tests to run |
| 175 | * @count: Number of tests to ru |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 176 | * Return: true if any of the tests have the UT_TESTF_DM flag |
Simon Glass | 1fc9c12 | 2021-03-07 17:35:07 -0700 | [diff] [blame] | 177 | */ |
| 178 | static bool ut_list_has_dm_tests(struct unit_test *tests, int count) |
| 179 | { |
| 180 | struct unit_test *test; |
| 181 | |
| 182 | for (test = tests; test < tests + count; test++) { |
| 183 | if (test->flags & UT_TESTF_DM) |
| 184 | return true; |
| 185 | } |
| 186 | |
| 187 | return false; |
| 188 | } |
| 189 | |
Simon Glass | f97f85e | 2021-03-07 17:35:05 -0700 | [diff] [blame] | 190 | /** |
Simon Glass | 664277f | 2021-03-07 17:35:08 -0700 | [diff] [blame] | 191 | * dm_test_restore() Put things back to normal so sandbox works as expected |
| 192 | * |
| 193 | * @of_root: Value to set for of_root |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 194 | * Return: 0 if OK, -ve on error |
Simon Glass | 664277f | 2021-03-07 17:35:08 -0700 | [diff] [blame] | 195 | */ |
| 196 | static int dm_test_restore(struct device_node *of_root) |
| 197 | { |
| 198 | int ret; |
| 199 | |
| 200 | gd_set_of_root(of_root); |
| 201 | gd->dm_root = NULL; |
| 202 | ret = dm_init(CONFIG_IS_ENABLED(OF_LIVE)); |
| 203 | if (ret) |
| 204 | return ret; |
| 205 | dm_scan_plat(false); |
| 206 | if (!CONFIG_IS_ENABLED(OF_PLATDATA)) |
| 207 | dm_scan_fdt(false); |
| 208 | |
| 209 | return 0; |
| 210 | } |
| 211 | |
| 212 | /** |
Simon Glass | ca44ca0 | 2021-03-07 17:35:01 -0700 | [diff] [blame] | 213 | * test_pre_run() - Handle any preparation needed to run a test |
| 214 | * |
| 215 | * @uts: Test state |
| 216 | * @test: Test to prepare for |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 217 | * Return: 0 if OK, -EAGAIN to skip this test since some required feature is not |
Simon Glass | ca44ca0 | 2021-03-07 17:35:01 -0700 | [diff] [blame] | 218 | * available, other -ve on error (meaning that testing cannot likely |
| 219 | * continue) |
| 220 | */ |
| 221 | static int test_pre_run(struct unit_test_state *uts, struct unit_test *test) |
Simon Glass | d002a27 | 2021-03-07 17:34:48 -0700 | [diff] [blame] | 222 | { |
Simon Glass | 7d02645 | 2022-03-04 08:43:01 -0700 | [diff] [blame] | 223 | ut_assertok(event_init()); |
Stefan Roese | af042c2 | 2022-09-02 13:57:54 +0200 | [diff] [blame] | 224 | ut_assertok(cyclic_init()); |
Simon Glass | 7d02645 | 2022-03-04 08:43:01 -0700 | [diff] [blame] | 225 | |
Simon Glass | 72b524c | 2021-03-07 17:34:56 -0700 | [diff] [blame] | 226 | if (test->flags & UT_TESTF_DM) |
Simon Glass | c79705e | 2021-03-07 17:34:58 -0700 | [diff] [blame] | 227 | ut_assertok(dm_test_pre_run(uts)); |
Simon Glass | 72b524c | 2021-03-07 17:34:56 -0700 | [diff] [blame] | 228 | |
Simon Glass | 47ec3ed | 2021-03-07 17:34:55 -0700 | [diff] [blame] | 229 | ut_set_skip_delays(uts, false); |
| 230 | |
Simon Glass | 19fb3db | 2021-03-07 17:34:53 -0700 | [diff] [blame] | 231 | uts->start = mallinfo(); |
Simon Glass | d002a27 | 2021-03-07 17:34:48 -0700 | [diff] [blame] | 232 | |
Simon Glass | ee8ab07 | 2022-07-30 15:52:26 -0600 | [diff] [blame] | 233 | if (test->flags & UT_TESTF_SCAN_PDATA) { |
Simon Glass | 5a986f3 | 2021-03-07 17:34:52 -0700 | [diff] [blame] | 234 | ut_assertok(dm_scan_plat(false)); |
Simon Glass | ee8ab07 | 2022-07-30 15:52:26 -0600 | [diff] [blame] | 235 | ut_assertok(dm_scan_other(false)); |
| 236 | } |
Simon Glass | 5a986f3 | 2021-03-07 17:34:52 -0700 | [diff] [blame] | 237 | |
Simon Glass | 4b8b27e | 2021-03-07 17:34:51 -0700 | [diff] [blame] | 238 | if (test->flags & UT_TESTF_PROBE_TEST) |
| 239 | ut_assertok(do_autoprobe(uts)); |
| 240 | |
Simon Glass | d8ed234 | 2021-03-07 17:34:50 -0700 | [diff] [blame] | 241 | if (!CONFIG_IS_ENABLED(OF_PLATDATA) && |
| 242 | (test->flags & UT_TESTF_SCAN_FDT)) |
| 243 | ut_assertok(dm_extended_scan(false)); |
| 244 | |
Simon Glass | d002a27 | 2021-03-07 17:34:48 -0700 | [diff] [blame] | 245 | if (test->flags & UT_TESTF_CONSOLE_REC) { |
| 246 | int ret = console_record_reset_enable(); |
| 247 | |
| 248 | if (ret) { |
| 249 | printf("Skipping: Console recording disabled\n"); |
| 250 | return -EAGAIN; |
| 251 | } |
| 252 | } |
Simon Glass | 7452471 | 2021-03-07 17:34:54 -0700 | [diff] [blame] | 253 | ut_silence_console(uts); |
Simon Glass | d002a27 | 2021-03-07 17:34:48 -0700 | [diff] [blame] | 254 | |
| 255 | return 0; |
| 256 | } |
| 257 | |
Simon Glass | ca44ca0 | 2021-03-07 17:35:01 -0700 | [diff] [blame] | 258 | /** |
| 259 | * test_post_run() - Handle cleaning up after a test |
| 260 | * |
| 261 | * @uts: Test state |
| 262 | * @test: Test to clean up after |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 263 | * Return: 0 if OK, -ve on error (meaning that testing cannot likely continue) |
Simon Glass | ca44ca0 | 2021-03-07 17:35:01 -0700 | [diff] [blame] | 264 | */ |
| 265 | static int test_post_run(struct unit_test_state *uts, struct unit_test *test) |
Simon Glass | d002a27 | 2021-03-07 17:34:48 -0700 | [diff] [blame] | 266 | { |
Simon Glass | 7452471 | 2021-03-07 17:34:54 -0700 | [diff] [blame] | 267 | ut_unsilence_console(uts); |
Simon Glass | e77615d | 2021-03-07 17:34:59 -0700 | [diff] [blame] | 268 | if (test->flags & UT_TESTF_DM) |
| 269 | ut_assertok(dm_test_post_run(uts)); |
Stefan Roese | af042c2 | 2022-09-02 13:57:54 +0200 | [diff] [blame] | 270 | ut_assertok(cyclic_uninit()); |
Simon Glass | 7d02645 | 2022-03-04 08:43:01 -0700 | [diff] [blame] | 271 | ut_assertok(event_uninit()); |
Simon Glass | 30a0d20 | 2021-03-07 17:34:49 -0700 | [diff] [blame] | 272 | |
Simon Glass | d002a27 | 2021-03-07 17:34:48 -0700 | [diff] [blame] | 273 | return 0; |
| 274 | } |
| 275 | |
Simon Glass | d2281bb | 2021-03-07 17:35:03 -0700 | [diff] [blame] | 276 | /** |
| 277 | * ut_run_test() - Run a single test |
| 278 | * |
| 279 | * This runs the test, handling any preparation and clean-up needed. It prints |
| 280 | * the name of each test before running it. |
| 281 | * |
| 282 | * @uts: Test state to update. The caller should ensure that this is zeroed for |
| 283 | * the first call to this function. On exit, @uts->fail_count is |
| 284 | * incremented by the number of failures (0, one hopes) |
| 285 | * @test_name: Test to run |
| 286 | * @name: Name of test, possibly skipping a prefix that should not be displayed |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 287 | * Return: 0 if all tests passed, -EAGAIN if the test should be skipped, -1 if |
Simon Glass | d2281bb | 2021-03-07 17:35:03 -0700 | [diff] [blame] | 288 | * any failed |
| 289 | */ |
| 290 | static int ut_run_test(struct unit_test_state *uts, struct unit_test *test, |
| 291 | const char *test_name) |
Simon Glass | 99a88fe | 2021-03-07 17:35:00 -0700 | [diff] [blame] | 292 | { |
Simon Glass | ca44ca0 | 2021-03-07 17:35:01 -0700 | [diff] [blame] | 293 | const char *fname = strrchr(test->file, '/') + 1; |
| 294 | const char *note = ""; |
Simon Glass | 99a88fe | 2021-03-07 17:35:00 -0700 | [diff] [blame] | 295 | int ret; |
| 296 | |
Simon Glass | ca44ca0 | 2021-03-07 17:35:01 -0700 | [diff] [blame] | 297 | if ((test->flags & UT_TESTF_DM) && !uts->of_live) |
| 298 | note = " (flat tree)"; |
| 299 | printf("Test: %s: %s%s\n", test_name, fname, note); |
Simon Glass | 99a88fe | 2021-03-07 17:35:00 -0700 | [diff] [blame] | 300 | |
Simon Glass | fe80686 | 2021-03-07 17:35:04 -0700 | [diff] [blame] | 301 | /* Allow access to test state from drivers */ |
| 302 | test_set_state(uts); |
| 303 | |
Simon Glass | 99a88fe | 2021-03-07 17:35:00 -0700 | [diff] [blame] | 304 | ret = test_pre_run(uts, test); |
| 305 | if (ret == -EAGAIN) |
| 306 | return -EAGAIN; |
| 307 | if (ret) |
| 308 | return ret; |
| 309 | |
| 310 | test->func(uts); |
| 311 | |
| 312 | ret = test_post_run(uts, test); |
| 313 | if (ret) |
| 314 | return ret; |
| 315 | |
Simon Glass | fe80686 | 2021-03-07 17:35:04 -0700 | [diff] [blame] | 316 | test_set_state( NULL); |
| 317 | |
Simon Glass | 99a88fe | 2021-03-07 17:35:00 -0700 | [diff] [blame] | 318 | return 0; |
| 319 | } |
| 320 | |
Simon Glass | f97f85e | 2021-03-07 17:35:05 -0700 | [diff] [blame] | 321 | /** |
| 322 | * ut_run_test_live_flat() - Run a test with both live and flat tree |
| 323 | * |
| 324 | * This calls ut_run_test() with livetree enabled, which is the standard setup |
| 325 | * for runnig tests. Then, for driver model test, it calls it again with |
| 326 | * livetree disabled. This allows checking of flattree being used when OF_LIVE |
| 327 | * is enabled, as is the case in U-Boot proper before relocation, as well as in |
| 328 | * SPL. |
| 329 | * |
| 330 | * @uts: Test state to update. The caller should ensure that this is zeroed for |
| 331 | * the first call to this function. On exit, @uts->fail_count is |
| 332 | * incremented by the number of failures (0, one hopes) |
| 333 | * @test: Test to run |
| 334 | * @name: Name of test, possibly skipping a prefix that should not be displayed |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 335 | * Return: 0 if all tests passed, -EAGAIN if the test should be skipped, -1 if |
Simon Glass | f97f85e | 2021-03-07 17:35:05 -0700 | [diff] [blame] | 336 | * any failed |
| 337 | */ |
| 338 | static int ut_run_test_live_flat(struct unit_test_state *uts, |
| 339 | struct unit_test *test, const char *name) |
Simon Glass | d2281bb | 2021-03-07 17:35:03 -0700 | [diff] [blame] | 340 | { |
| 341 | int runs; |
| 342 | |
| 343 | /* Run with the live tree if possible */ |
| 344 | runs = 0; |
| 345 | if (CONFIG_IS_ENABLED(OF_LIVE)) { |
Simon Glass | 7c14dc7 | 2022-09-06 20:26:59 -0600 | [diff] [blame^] | 346 | if (!(test->flags & UT_TESTF_FLAT_TREE)) { |
Simon Glass | d2281bb | 2021-03-07 17:35:03 -0700 | [diff] [blame] | 347 | uts->of_live = true; |
| 348 | ut_assertok(ut_run_test(uts, test, test->name)); |
| 349 | runs++; |
| 350 | } |
| 351 | } |
| 352 | |
| 353 | /* |
| 354 | * Run with the flat tree if we couldn't run it with live tree, |
| 355 | * or it is a core test. |
| 356 | */ |
| 357 | if (!(test->flags & UT_TESTF_LIVE_TREE) && |
| 358 | (!runs || ut_test_run_on_flattree(test))) { |
| 359 | uts->of_live = false; |
| 360 | ut_assertok(ut_run_test(uts, test, test->name)); |
| 361 | runs++; |
| 362 | } |
| 363 | |
| 364 | return 0; |
| 365 | } |
| 366 | |
Simon Glass | f97f85e | 2021-03-07 17:35:05 -0700 | [diff] [blame] | 367 | /** |
| 368 | * ut_run_tests() - Run a set of tests |
| 369 | * |
| 370 | * This runs the tests, handling any preparation and clean-up needed. It prints |
| 371 | * the name of each test before running it. |
| 372 | * |
| 373 | * @uts: Test state to update. The caller should ensure that this is zeroed for |
| 374 | * the first call to this function. On exit, @uts->fail_count is |
| 375 | * incremented by the number of failures (0, one hopes) |
| 376 | * @prefix: String prefix for the tests. Any tests that have this prefix will be |
| 377 | * printed without the prefix, so that it is easier to see the unique part |
| 378 | * of the test name. If NULL, no prefix processing is done |
| 379 | * @tests: List of tests to run |
| 380 | * @count: Number of tests to run |
| 381 | * @select_name: Name of a single test to run (from the list provided). If NULL |
| 382 | * then all tests are run |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 383 | * Return: 0 if all tests passed, -ENOENT if test @select_name was not found, |
Simon Glass | f97f85e | 2021-03-07 17:35:05 -0700 | [diff] [blame] | 384 | * -EBADF if any failed |
| 385 | */ |
| 386 | static int ut_run_tests(struct unit_test_state *uts, const char *prefix, |
| 387 | struct unit_test *tests, int count, |
| 388 | const char *select_name) |
Simon Glass | 1c72175 | 2021-03-07 17:34:47 -0700 | [diff] [blame] | 389 | { |
| 390 | struct unit_test *test; |
Simon Glass | 1c72175 | 2021-03-07 17:34:47 -0700 | [diff] [blame] | 391 | int found = 0; |
| 392 | |
| 393 | for (test = tests; test < tests + count; test++) { |
| 394 | const char *test_name = test->name; |
Simon Glass | ea94d05 | 2022-08-01 07:58:45 -0600 | [diff] [blame] | 395 | int ret, i, old_fail_count; |
Simon Glass | 1c72175 | 2021-03-07 17:34:47 -0700 | [diff] [blame] | 396 | |
Simon Glass | f97f85e | 2021-03-07 17:35:05 -0700 | [diff] [blame] | 397 | if (!test_matches(prefix, test_name, select_name)) |
Simon Glass | 1c72175 | 2021-03-07 17:34:47 -0700 | [diff] [blame] | 398 | continue; |
Simon Glass | ea94d05 | 2022-08-01 07:58:45 -0600 | [diff] [blame] | 399 | old_fail_count = uts->fail_count; |
| 400 | for (i = 0; i < uts->runs_per_test; i++) |
| 401 | ret = ut_run_test_live_flat(uts, test, select_name); |
| 402 | if (uts->fail_count != old_fail_count) { |
| 403 | printf("Test %s failed %d times\n", select_name, |
| 404 | uts->fail_count - old_fail_count); |
| 405 | } |
Simon Glass | 1c72175 | 2021-03-07 17:34:47 -0700 | [diff] [blame] | 406 | found++; |
Simon Glass | d002a27 | 2021-03-07 17:34:48 -0700 | [diff] [blame] | 407 | if (ret == -EAGAIN) |
| 408 | continue; |
| 409 | if (ret) |
| 410 | return ret; |
Simon Glass | 1c72175 | 2021-03-07 17:34:47 -0700 | [diff] [blame] | 411 | } |
| 412 | if (select_name && !found) |
| 413 | return -ENOENT; |
| 414 | |
| 415 | return uts->fail_count ? -EBADF : 0; |
| 416 | } |
| 417 | |
| 418 | int ut_run_list(const char *category, const char *prefix, |
Simon Glass | ea94d05 | 2022-08-01 07:58:45 -0600 | [diff] [blame] | 419 | struct unit_test *tests, int count, const char *select_name, |
| 420 | int runs_per_test) |
Simon Glass | 1c72175 | 2021-03-07 17:34:47 -0700 | [diff] [blame] | 421 | { |
| 422 | struct unit_test_state uts = { .fail_count = 0 }; |
Simon Glass | 664277f | 2021-03-07 17:35:08 -0700 | [diff] [blame] | 423 | bool has_dm_tests = false; |
Simon Glass | 1c72175 | 2021-03-07 17:34:47 -0700 | [diff] [blame] | 424 | int ret; |
| 425 | |
Simon Glass | 1fc9c12 | 2021-03-07 17:35:07 -0700 | [diff] [blame] | 426 | if (!CONFIG_IS_ENABLED(OF_PLATDATA) && |
| 427 | ut_list_has_dm_tests(tests, count)) { |
Simon Glass | 664277f | 2021-03-07 17:35:08 -0700 | [diff] [blame] | 428 | has_dm_tests = true; |
Simon Glass | 1fc9c12 | 2021-03-07 17:35:07 -0700 | [diff] [blame] | 429 | /* |
| 430 | * If we have no device tree, or it only has a root node, then |
| 431 | * these * tests clearly aren't going to work... |
| 432 | */ |
| 433 | if (!gd->fdt_blob || fdt_next_node(gd->fdt_blob, 0, NULL) < 0) { |
| 434 | puts("Please run with test device tree:\n" |
| 435 | " ./u-boot -d arch/sandbox/dts/test.dtb\n"); |
| 436 | return CMD_RET_FAILURE; |
| 437 | } |
| 438 | } |
| 439 | |
Simon Glass | 1c72175 | 2021-03-07 17:34:47 -0700 | [diff] [blame] | 440 | if (!select_name) |
| 441 | printf("Running %d %s tests\n", count, category); |
| 442 | |
Simon Glass | f97f85e | 2021-03-07 17:35:05 -0700 | [diff] [blame] | 443 | uts.of_root = gd_of_root(); |
Simon Glass | ea94d05 | 2022-08-01 07:58:45 -0600 | [diff] [blame] | 444 | uts.runs_per_test = runs_per_test; |
Simon Glass | 1c72175 | 2021-03-07 17:34:47 -0700 | [diff] [blame] | 445 | ret = ut_run_tests(&uts, prefix, tests, count, select_name); |
| 446 | |
| 447 | if (ret == -ENOENT) |
| 448 | printf("Test '%s' not found\n", select_name); |
| 449 | else |
| 450 | printf("Failures: %d\n", uts.fail_count); |
| 451 | |
Simon Glass | 664277f | 2021-03-07 17:35:08 -0700 | [diff] [blame] | 452 | /* Best efforts only...ignore errors */ |
| 453 | if (has_dm_tests) |
| 454 | dm_test_restore(uts.of_root); |
| 455 | |
Simon Glass | 1c72175 | 2021-03-07 17:34:47 -0700 | [diff] [blame] | 456 | return ret; |
| 457 | } |