blob: a98a77d68fcbb4ded7a82e7fbd779e40661bd24f [file] [log] [blame]
Simon Glass1c721752021-03-07 17:34:47 -07001// 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 Roeseaf042c22022-09-02 13:57:54 +02009#include <cyclic.h>
Simon Glassd8ed2342021-03-07 17:34:50 -070010#include <dm.h>
Simon Glass7d026452022-03-04 08:43:01 -070011#include <event.h>
Simon Glass8d468a12022-09-06 20:27:11 -060012#include <of_live.h>
Simon Glass0e4b6972022-09-06 20:27:05 -060013#include <os.h>
Simon Glassee88ba72022-09-06 20:27:19 -060014#include <dm/ofnode.h>
Simon Glassd8ed2342021-03-07 17:34:50 -070015#include <dm/root.h>
Simon Glassc79705e2021-03-07 17:34:58 -070016#include <dm/test.h>
Simon Glasse77615d2021-03-07 17:34:59 -070017#include <dm/uclass-internal.h>
Simon Glass1c721752021-03-07 17:34:47 -070018#include <test/test.h>
Simon Glassd8ed2342021-03-07 17:34:50 -070019#include <test/ut.h>
Simon Glass0e4b6972022-09-06 20:27:05 -060020#include <u-boot/crc.h>
Simon Glass1c721752021-03-07 17:34:47 -070021
Simon Glass30a0d202021-03-07 17:34:49 -070022DECLARE_GLOBAL_DATA_PTR;
23
Simon Glass0e4b6972022-09-06 20:27:05 -060024/**
25 * enum fdtchk_t - what to do with the device tree (gd->fdt_blob)
26 *
27 * This affects what happens with the device tree before and after a test
28 *
29 * @FDTCHK_NONE: Do nothing
30 * @FDTCHK_CHECKSUM: Take a checksum of the FDT before the test runs and
31 * compare it afterwards to detect any changes
32 * @FDTCHK_COPY: Make a copy of the FDT and restore it afterwards
33 */
34enum fdtchk_t {
35 FDTCHK_NONE,
36 FDTCHK_CHECKSUM,
37 FDTCHK_COPY,
38};
39
40/**
41 * fdt_action() - get the required action for the FDT
42 *
43 * @return the action that should be taken for this build
44 */
45static enum fdtchk_t fdt_action(void)
46{
47 /* Do a copy for sandbox (but only the U-Boot build, not SPL) */
48 if (CONFIG_IS_ENABLED(SANDBOX))
49 return FDTCHK_COPY;
50
51 /* For sandbox SPL builds, do nothing */
52 if (IS_ENABLED(CONFIG_SANDBOX))
53 return FDTCHK_NONE;
54
55 /* For all other boards, do a checksum */
56 return FDTCHK_CHECKSUM;
57}
58
Simon Glassfe806862021-03-07 17:35:04 -070059/* This is valid when a test is running, NULL otherwise */
60static struct unit_test_state *cur_test_state;
61
62struct unit_test_state *test_get_state(void)
63{
64 return cur_test_state;
65}
66
67void test_set_state(struct unit_test_state *uts)
68{
69 cur_test_state = uts;
70}
71
Simon Glassc79705e2021-03-07 17:34:58 -070072/**
73 * dm_test_pre_run() - Get ready to run a driver model test
74 *
75 * This clears out the driver model data structures. For sandbox it resets the
76 * state structure
77 *
78 * @uts: Test state
79 */
80static int dm_test_pre_run(struct unit_test_state *uts)
81{
82 bool of_live = uts->of_live;
83
Simon Glasseb6e9032022-09-06 20:27:06 -060084 if (of_live && (gd->flags & GD_FLG_FDT_CHANGED)) {
85 printf("Cannot run live tree test as device tree changed\n");
86 return -EFAULT;
87 }
Simon Glassc79705e2021-03-07 17:34:58 -070088 uts->root = NULL;
89 uts->testdev = NULL;
90 uts->force_fail_alloc = false;
91 uts->skip_post_probe = false;
Simon Glass0e4b6972022-09-06 20:27:05 -060092 if (fdt_action() == FDTCHK_CHECKSUM)
93 uts->fdt_chksum = crc8(0, gd->fdt_blob,
94 fdt_totalsize(gd->fdt_blob));
Simon Glassc79705e2021-03-07 17:34:58 -070095 gd->dm_root = NULL;
Simon Glass62d63832022-09-06 20:27:00 -060096 malloc_disable_testing();
Simon Glass719d2862021-07-05 16:32:43 -060097 if (CONFIG_IS_ENABLED(UT_DM) && !CONFIG_IS_ENABLED(OF_PLATDATA))
Simon Glassc79705e2021-03-07 17:34:58 -070098 memset(dm_testdrv_op_count, '\0', sizeof(dm_testdrv_op_count));
Simon Glassd4a15922021-03-25 10:44:33 +130099 arch_reset_for_test();
Simon Glassc79705e2021-03-07 17:34:58 -0700100
101 /* Determine whether to make the live tree available */
102 gd_set_of_root(of_live ? uts->of_root : NULL);
Simon Glassee88ba72022-09-06 20:27:19 -0600103 oftree_reset();
Simon Glassc79705e2021-03-07 17:34:58 -0700104 ut_assertok(dm_init(of_live));
105 uts->root = dm_root();
106
107 return 0;
108}
109
Simon Glasse77615d2021-03-07 17:34:59 -0700110static int dm_test_post_run(struct unit_test_state *uts)
111{
112 int id;
113
Simon Glass0e4b6972022-09-06 20:27:05 -0600114 if (gd->fdt_blob) {
115 switch (fdt_action()) {
116 case FDTCHK_COPY:
117 memcpy((void *)gd->fdt_blob, uts->fdt_copy, uts->fdt_size);
118 break;
119 case FDTCHK_CHECKSUM: {
120 uint chksum;
121
122 chksum = crc8(0, gd->fdt_blob, fdt_totalsize(gd->fdt_blob));
Simon Glasseb6e9032022-09-06 20:27:06 -0600123 if (chksum != uts->fdt_chksum) {
124 /*
125 * We cannot run any more tests that need the
126 * live tree, since its strings point into the
127 * flat tree, which has changed. This likely
128 * means that at least some of the pointers from
129 * the live tree point to different things
130 */
Simon Glass0e4b6972022-09-06 20:27:05 -0600131 printf("Device tree changed: cannot run live tree tests\n");
Simon Glasseb6e9032022-09-06 20:27:06 -0600132 gd->flags |= GD_FLG_FDT_CHANGED;
133 }
Simon Glass0e4b6972022-09-06 20:27:05 -0600134 break;
135 }
136 case FDTCHK_NONE:
137 break;
138 }
139 }
140
Simon Glasse8c023c2021-03-15 17:25:21 +1300141 /*
142 * With of-platdata-inst the uclasses are created at build time. If we
143 * destroy them we cannot get them back since uclass_add() is not
144 * supported. So skip this.
145 */
146 if (!CONFIG_IS_ENABLED(OF_PLATDATA_INST)) {
147 for (id = 0; id < UCLASS_COUNT; id++) {
148 struct uclass *uc;
Simon Glasse77615d2021-03-07 17:34:59 -0700149
Simon Glasse8c023c2021-03-15 17:25:21 +1300150 /*
151 * If the uclass doesn't exist we don't want to create
152 * it. So check that here before we call
153 * uclass_find_device().
154 */
155 uc = uclass_find(id);
156 if (!uc)
157 continue;
158 ut_assertok(uclass_destroy(uc));
159 }
Simon Glasse77615d2021-03-07 17:34:59 -0700160 }
161
162 return 0;
163}
164
Simon Glass4b8b27e2021-03-07 17:34:51 -0700165/* Ensure all the test devices are probed */
166static int do_autoprobe(struct unit_test_state *uts)
167{
Michal Suchanekc0648b72022-10-12 21:57:51 +0200168 return uclass_probe_all(UCLASS_TEST);
Simon Glass4b8b27e2021-03-07 17:34:51 -0700169}
170
Simon Glassd2281bb2021-03-07 17:35:03 -0700171/*
172 * ut_test_run_on_flattree() - Check if we should run a test with flat DT
173 *
174 * This skips long/slow tests where there is not much value in running a flat
175 * DT test in addition to a live DT test.
176 *
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100177 * Return: true to run the given test on the flat device tree
Simon Glassd2281bb2021-03-07 17:35:03 -0700178 */
179static bool ut_test_run_on_flattree(struct unit_test *test)
180{
181 const char *fname = strrchr(test->file, '/') + 1;
182
183 if (!(test->flags & UT_TESTF_DM))
184 return false;
185
186 return !strstr(fname, "video") || strstr(test->name, "video_base");
187}
188
Simon Glassca44ca02021-03-07 17:35:01 -0700189/**
Simon Glassf97f85e2021-03-07 17:35:05 -0700190 * test_matches() - Check if a test should be run
191 *
192 * This checks if the a test should be run. In the normal case of running all
193 * tests, @select_name is NULL.
194 *
195 * @prefix: String prefix for the tests. Any tests that have this prefix will be
196 * printed without the prefix, so that it is easier to see the unique part
Simon Glass84823562021-03-07 17:35:12 -0700197 * of the test name. If NULL, any suite name (xxx_test) is considered to be
198 * a prefix.
Simon Glassf97f85e2021-03-07 17:35:05 -0700199 * @test_name: Name of current test
200 * @select_name: Name of test to run (or NULL for all)
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100201 * Return: true to run this test, false to skip it
Simon Glassf97f85e2021-03-07 17:35:05 -0700202 */
203static bool test_matches(const char *prefix, const char *test_name,
204 const char *select_name)
205{
Andy Shevchenkoff232a72021-02-11 16:40:10 +0200206 size_t len;
207
Simon Glassf97f85e2021-03-07 17:35:05 -0700208 if (!select_name)
209 return true;
210
Andy Shevchenkoff232a72021-02-11 16:40:10 +0200211 /* Allow glob expansion in the test name */
212 len = select_name[strlen(select_name) - 1] == '*' ? strlen(select_name) : 0;
213 if (len-- == 1)
214 return true;
215
216 if (!strncmp(test_name, select_name, len))
Simon Glassf97f85e2021-03-07 17:35:05 -0700217 return true;
218
Andy Shevchenko494a5e12021-02-11 16:40:11 +0200219 if (prefix) {
220 /* All tests have this prefix */
221 if (!strncmp(test_name, prefix, strlen(prefix)))
222 test_name += strlen(prefix);
223 } else {
Simon Glass84823562021-03-07 17:35:12 -0700224 const char *p = strstr(test_name, "_test_");
225
226 /* convert xxx_test_yyy to yyy, i.e. remove the suite name */
227 if (p)
Andy Shevchenko494a5e12021-02-11 16:40:11 +0200228 test_name = p + strlen("_test_");
Simon Glass84823562021-03-07 17:35:12 -0700229 }
Simon Glassf97f85e2021-03-07 17:35:05 -0700230
Andy Shevchenkoff232a72021-02-11 16:40:10 +0200231 if (!strncmp(test_name, select_name, len))
Simon Glassf97f85e2021-03-07 17:35:05 -0700232 return true;
233
234 return false;
235}
236
Simon Glass664277f2021-03-07 17:35:08 -0700237/**
Simon Glass1fc9c122021-03-07 17:35:07 -0700238 * ut_list_has_dm_tests() - Check if a list of tests has driver model ones
239 *
240 * @tests: List of tests to run
241 * @count: Number of tests to ru
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100242 * Return: true if any of the tests have the UT_TESTF_DM flag
Simon Glass1fc9c122021-03-07 17:35:07 -0700243 */
244static bool ut_list_has_dm_tests(struct unit_test *tests, int count)
245{
246 struct unit_test *test;
247
248 for (test = tests; test < tests + count; test++) {
249 if (test->flags & UT_TESTF_DM)
250 return true;
251 }
252
253 return false;
254}
255
Simon Glassf97f85e2021-03-07 17:35:05 -0700256/**
Simon Glass664277f2021-03-07 17:35:08 -0700257 * dm_test_restore() Put things back to normal so sandbox works as expected
258 *
259 * @of_root: Value to set for of_root
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100260 * Return: 0 if OK, -ve on error
Simon Glass664277f2021-03-07 17:35:08 -0700261 */
262static int dm_test_restore(struct device_node *of_root)
263{
264 int ret;
265
266 gd_set_of_root(of_root);
267 gd->dm_root = NULL;
268 ret = dm_init(CONFIG_IS_ENABLED(OF_LIVE));
269 if (ret)
270 return ret;
271 dm_scan_plat(false);
272 if (!CONFIG_IS_ENABLED(OF_PLATDATA))
273 dm_scan_fdt(false);
274
275 return 0;
276}
277
278/**
Simon Glassca44ca02021-03-07 17:35:01 -0700279 * test_pre_run() - Handle any preparation needed to run a test
280 *
281 * @uts: Test state
282 * @test: Test to prepare for
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100283 * Return: 0 if OK, -EAGAIN to skip this test since some required feature is not
Simon Glassca44ca02021-03-07 17:35:01 -0700284 * available, other -ve on error (meaning that testing cannot likely
285 * continue)
286 */
287static int test_pre_run(struct unit_test_state *uts, struct unit_test *test)
Simon Glassd002a272021-03-07 17:34:48 -0700288{
Simon Glass7d026452022-03-04 08:43:01 -0700289 ut_assertok(event_init());
Stefan Roeseaf042c22022-09-02 13:57:54 +0200290 ut_assertok(cyclic_init());
Simon Glass7d026452022-03-04 08:43:01 -0700291
Simon Glass72b524c2021-03-07 17:34:56 -0700292 if (test->flags & UT_TESTF_DM)
Simon Glassc79705e2021-03-07 17:34:58 -0700293 ut_assertok(dm_test_pre_run(uts));
Simon Glass72b524c2021-03-07 17:34:56 -0700294
Simon Glass47ec3ed2021-03-07 17:34:55 -0700295 ut_set_skip_delays(uts, false);
296
Simon Glass19fb3db2021-03-07 17:34:53 -0700297 uts->start = mallinfo();
Simon Glassd002a272021-03-07 17:34:48 -0700298
Simon Glassee8ab072022-07-30 15:52:26 -0600299 if (test->flags & UT_TESTF_SCAN_PDATA) {
Simon Glass5a986f32021-03-07 17:34:52 -0700300 ut_assertok(dm_scan_plat(false));
Simon Glassee8ab072022-07-30 15:52:26 -0600301 ut_assertok(dm_scan_other(false));
302 }
Simon Glass5a986f32021-03-07 17:34:52 -0700303
Simon Glass4b8b27e2021-03-07 17:34:51 -0700304 if (test->flags & UT_TESTF_PROBE_TEST)
305 ut_assertok(do_autoprobe(uts));
306
Simon Glassd8ed2342021-03-07 17:34:50 -0700307 if (!CONFIG_IS_ENABLED(OF_PLATDATA) &&
308 (test->flags & UT_TESTF_SCAN_FDT))
309 ut_assertok(dm_extended_scan(false));
310
Simon Glass8d468a12022-09-06 20:27:11 -0600311 if (IS_ENABLED(CONFIG_SANDBOX) && (test->flags & UT_TESTF_OTHER_FDT)) {
312 /* make sure the other FDT is available */
313 ut_assertok(test_load_other_fdt(uts));
314
315 /*
316 * create a new live tree with it for every test, in case a
317 * test modifies the tree
318 */
319 if (of_live_active()) {
320 ut_assertok(unflatten_device_tree(uts->other_fdt,
321 &uts->of_other));
322 }
323 }
324
Simon Glassd002a272021-03-07 17:34:48 -0700325 if (test->flags & UT_TESTF_CONSOLE_REC) {
326 int ret = console_record_reset_enable();
327
328 if (ret) {
329 printf("Skipping: Console recording disabled\n");
330 return -EAGAIN;
331 }
332 }
Simon Glass74524712021-03-07 17:34:54 -0700333 ut_silence_console(uts);
Simon Glassd002a272021-03-07 17:34:48 -0700334
335 return 0;
336}
337
Simon Glassca44ca02021-03-07 17:35:01 -0700338/**
339 * test_post_run() - Handle cleaning up after a test
340 *
341 * @uts: Test state
342 * @test: Test to clean up after
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100343 * Return: 0 if OK, -ve on error (meaning that testing cannot likely continue)
Simon Glassca44ca02021-03-07 17:35:01 -0700344 */
345static int test_post_run(struct unit_test_state *uts, struct unit_test *test)
Simon Glassd002a272021-03-07 17:34:48 -0700346{
Simon Glass74524712021-03-07 17:34:54 -0700347 ut_unsilence_console(uts);
Simon Glasse77615d2021-03-07 17:34:59 -0700348 if (test->flags & UT_TESTF_DM)
349 ut_assertok(dm_test_post_run(uts));
Stefan Roeseaf042c22022-09-02 13:57:54 +0200350 ut_assertok(cyclic_uninit());
Simon Glass7d026452022-03-04 08:43:01 -0700351 ut_assertok(event_uninit());
Simon Glass30a0d202021-03-07 17:34:49 -0700352
Simon Glass8d468a12022-09-06 20:27:11 -0600353 free(uts->of_other);
354 uts->of_other = NULL;
355
Simon Glassd002a272021-03-07 17:34:48 -0700356 return 0;
357}
358
Simon Glassd2281bb2021-03-07 17:35:03 -0700359/**
360 * ut_run_test() - Run a single test
361 *
362 * This runs the test, handling any preparation and clean-up needed. It prints
363 * the name of each test before running it.
364 *
365 * @uts: Test state to update. The caller should ensure that this is zeroed for
366 * the first call to this function. On exit, @uts->fail_count is
367 * incremented by the number of failures (0, one hopes)
368 * @test_name: Test to run
369 * @name: Name of test, possibly skipping a prefix that should not be displayed
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100370 * Return: 0 if all tests passed, -EAGAIN if the test should be skipped, -1 if
Simon Glassd2281bb2021-03-07 17:35:03 -0700371 * any failed
372 */
373static int ut_run_test(struct unit_test_state *uts, struct unit_test *test,
374 const char *test_name)
Simon Glass99a88fe2021-03-07 17:35:00 -0700375{
Simon Glassca44ca02021-03-07 17:35:01 -0700376 const char *fname = strrchr(test->file, '/') + 1;
377 const char *note = "";
Simon Glass99a88fe2021-03-07 17:35:00 -0700378 int ret;
379
Simon Glassca44ca02021-03-07 17:35:01 -0700380 if ((test->flags & UT_TESTF_DM) && !uts->of_live)
381 note = " (flat tree)";
382 printf("Test: %s: %s%s\n", test_name, fname, note);
Simon Glass99a88fe2021-03-07 17:35:00 -0700383
Simon Glassfe806862021-03-07 17:35:04 -0700384 /* Allow access to test state from drivers */
385 test_set_state(uts);
386
Simon Glass99a88fe2021-03-07 17:35:00 -0700387 ret = test_pre_run(uts, test);
388 if (ret == -EAGAIN)
389 return -EAGAIN;
390 if (ret)
391 return ret;
392
393 test->func(uts);
394
395 ret = test_post_run(uts, test);
396 if (ret)
397 return ret;
398
Simon Glassfe806862021-03-07 17:35:04 -0700399 test_set_state( NULL);
400
Simon Glass99a88fe2021-03-07 17:35:00 -0700401 return 0;
402}
403
Simon Glassf97f85e2021-03-07 17:35:05 -0700404/**
405 * ut_run_test_live_flat() - Run a test with both live and flat tree
406 *
407 * This calls ut_run_test() with livetree enabled, which is the standard setup
408 * for runnig tests. Then, for driver model test, it calls it again with
409 * livetree disabled. This allows checking of flattree being used when OF_LIVE
410 * is enabled, as is the case in U-Boot proper before relocation, as well as in
411 * SPL.
412 *
413 * @uts: Test state to update. The caller should ensure that this is zeroed for
414 * the first call to this function. On exit, @uts->fail_count is
415 * incremented by the number of failures (0, one hopes)
416 * @test: Test to run
417 * @name: Name of test, possibly skipping a prefix that should not be displayed
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100418 * Return: 0 if all tests passed, -EAGAIN if the test should be skipped, -1 if
Simon Glassf97f85e2021-03-07 17:35:05 -0700419 * any failed
420 */
421static int ut_run_test_live_flat(struct unit_test_state *uts,
422 struct unit_test *test, const char *name)
Simon Glassd2281bb2021-03-07 17:35:03 -0700423{
424 int runs;
425
Simon Glass8d468a12022-09-06 20:27:11 -0600426 if ((test->flags & UT_TESTF_OTHER_FDT) && !IS_ENABLED(CONFIG_SANDBOX))
427 return -EAGAIN;
428
Simon Glassd2281bb2021-03-07 17:35:03 -0700429 /* Run with the live tree if possible */
430 runs = 0;
431 if (CONFIG_IS_ENABLED(OF_LIVE)) {
Simon Glass7c14dc72022-09-06 20:26:59 -0600432 if (!(test->flags & UT_TESTF_FLAT_TREE)) {
Simon Glassd2281bb2021-03-07 17:35:03 -0700433 uts->of_live = true;
434 ut_assertok(ut_run_test(uts, test, test->name));
435 runs++;
436 }
437 }
438
439 /*
Simon Glass8d468a12022-09-06 20:27:11 -0600440 * Run with the flat tree if:
441 * - it is not marked for live tree only
442 * - it doesn't require the 'other' FDT when OFNODE_MULTI_TREE_MAX is
443 * not enabled (since flat tree can only support a single FDT in that
444 * case
445 * - we couldn't run it with live tree,
446 * - it is a core test (dm tests except video)
447 * - the FDT is still valid and has not been updated by an earlier test
448 * (for sandbox we handle this by copying the tree, but not for other
449 * boards)
Simon Glassd2281bb2021-03-07 17:35:03 -0700450 */
451 if (!(test->flags & UT_TESTF_LIVE_TREE) &&
Simon Glass8d468a12022-09-06 20:27:11 -0600452 (CONFIG_IS_ENABLED(OFNODE_MULTI_TREE) ||
453 !(test->flags & UT_TESTF_OTHER_FDT)) &&
Simon Glasseb6e9032022-09-06 20:27:06 -0600454 (!runs || ut_test_run_on_flattree(test)) &&
455 !(gd->flags & GD_FLG_FDT_CHANGED)) {
Simon Glassd2281bb2021-03-07 17:35:03 -0700456 uts->of_live = false;
457 ut_assertok(ut_run_test(uts, test, test->name));
458 runs++;
459 }
460
461 return 0;
462}
463
Simon Glassf97f85e2021-03-07 17:35:05 -0700464/**
465 * ut_run_tests() - Run a set of tests
466 *
467 * This runs the tests, handling any preparation and clean-up needed. It prints
468 * the name of each test before running it.
469 *
470 * @uts: Test state to update. The caller should ensure that this is zeroed for
471 * the first call to this function. On exit, @uts->fail_count is
472 * incremented by the number of failures (0, one hopes)
473 * @prefix: String prefix for the tests. Any tests that have this prefix will be
474 * printed without the prefix, so that it is easier to see the unique part
475 * of the test name. If NULL, no prefix processing is done
476 * @tests: List of tests to run
477 * @count: Number of tests to run
478 * @select_name: Name of a single test to run (from the list provided). If NULL
479 * then all tests are run
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100480 * Return: 0 if all tests passed, -ENOENT if test @select_name was not found,
Simon Glassf97f85e2021-03-07 17:35:05 -0700481 * -EBADF if any failed
482 */
483static int ut_run_tests(struct unit_test_state *uts, const char *prefix,
484 struct unit_test *tests, int count,
485 const char *select_name)
Simon Glass1c721752021-03-07 17:34:47 -0700486{
487 struct unit_test *test;
Simon Glass1c721752021-03-07 17:34:47 -0700488 int found = 0;
489
490 for (test = tests; test < tests + count; test++) {
491 const char *test_name = test->name;
Simon Glassea94d052022-08-01 07:58:45 -0600492 int ret, i, old_fail_count;
Simon Glass1c721752021-03-07 17:34:47 -0700493
Simon Glassf97f85e2021-03-07 17:35:05 -0700494 if (!test_matches(prefix, test_name, select_name))
Simon Glass1c721752021-03-07 17:34:47 -0700495 continue;
Simon Glassea94d052022-08-01 07:58:45 -0600496 old_fail_count = uts->fail_count;
497 for (i = 0; i < uts->runs_per_test; i++)
498 ret = ut_run_test_live_flat(uts, test, select_name);
499 if (uts->fail_count != old_fail_count) {
500 printf("Test %s failed %d times\n", select_name,
501 uts->fail_count - old_fail_count);
502 }
Simon Glass1c721752021-03-07 17:34:47 -0700503 found++;
Simon Glassd002a272021-03-07 17:34:48 -0700504 if (ret == -EAGAIN)
505 continue;
506 if (ret)
507 return ret;
Simon Glass1c721752021-03-07 17:34:47 -0700508 }
509 if (select_name && !found)
510 return -ENOENT;
511
512 return uts->fail_count ? -EBADF : 0;
513}
514
515int ut_run_list(const char *category, const char *prefix,
Simon Glassea94d052022-08-01 07:58:45 -0600516 struct unit_test *tests, int count, const char *select_name,
517 int runs_per_test)
Simon Glass1c721752021-03-07 17:34:47 -0700518{
519 struct unit_test_state uts = { .fail_count = 0 };
Simon Glass664277f2021-03-07 17:35:08 -0700520 bool has_dm_tests = false;
Simon Glass1c721752021-03-07 17:34:47 -0700521 int ret;
522
Simon Glass1fc9c122021-03-07 17:35:07 -0700523 if (!CONFIG_IS_ENABLED(OF_PLATDATA) &&
524 ut_list_has_dm_tests(tests, count)) {
Simon Glass664277f2021-03-07 17:35:08 -0700525 has_dm_tests = true;
Simon Glass1fc9c122021-03-07 17:35:07 -0700526 /*
527 * If we have no device tree, or it only has a root node, then
528 * these * tests clearly aren't going to work...
529 */
530 if (!gd->fdt_blob || fdt_next_node(gd->fdt_blob, 0, NULL) < 0) {
531 puts("Please run with test device tree:\n"
532 " ./u-boot -d arch/sandbox/dts/test.dtb\n");
533 return CMD_RET_FAILURE;
534 }
535 }
536
Simon Glass1c721752021-03-07 17:34:47 -0700537 if (!select_name)
538 printf("Running %d %s tests\n", count, category);
539
Simon Glassf97f85e2021-03-07 17:35:05 -0700540 uts.of_root = gd_of_root();
Simon Glassea94d052022-08-01 07:58:45 -0600541 uts.runs_per_test = runs_per_test;
Simon Glass0e4b6972022-09-06 20:27:05 -0600542 if (fdt_action() == FDTCHK_COPY && gd->fdt_blob) {
543 uts.fdt_size = fdt_totalsize(gd->fdt_blob);
544 uts.fdt_copy = os_malloc(uts.fdt_size);
545 if (!uts.fdt_copy) {
546 printf("Out of memory for device tree copy\n");
547 return -ENOMEM;
548 }
549 memcpy(uts.fdt_copy, gd->fdt_blob, uts.fdt_size);
550 }
Simon Glass1c721752021-03-07 17:34:47 -0700551 ret = ut_run_tests(&uts, prefix, tests, count, select_name);
552
Simon Glass0e4b6972022-09-06 20:27:05 -0600553 /* Best efforts only...ignore errors */
554 if (has_dm_tests)
555 dm_test_restore(uts.of_root);
Simon Glass8d468a12022-09-06 20:27:11 -0600556 if (IS_ENABLED(CONFIG_SANDBOX)) {
Simon Glass0e4b6972022-09-06 20:27:05 -0600557 os_free(uts.fdt_copy);
Simon Glass8d468a12022-09-06 20:27:11 -0600558 os_free(uts.other_fdt);
559 }
Simon Glass0e4b6972022-09-06 20:27:05 -0600560
Simon Glass1c721752021-03-07 17:34:47 -0700561 if (ret == -ENOENT)
562 printf("Test '%s' not found\n", select_name);
563 else
564 printf("Failures: %d\n", uts.fail_count);
565
Simon Glass664277f2021-03-07 17:35:08 -0700566 /* Best efforts only...ignore errors */
567 if (has_dm_tests)
568 dm_test_restore(uts.of_root);
569
Simon Glass1c721752021-03-07 17:34:47 -0700570 return ret;
571}