Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Simon Glass | b2c1cac | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2013 Google, Inc |
Simon Glass | b2c1cac | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #include <common.h> |
Joe Hershberger | 9dc1d71 | 2015-05-20 14:27:29 -0500 | [diff] [blame] | 7 | #include <command.h> |
Simon Glass | a73bda4 | 2015-11-08 23:47:45 -0700 | [diff] [blame] | 8 | #include <console.h> |
Simon Glass | b2c1cac | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 9 | #include <dm.h> |
| 10 | #include <errno.h> |
Simon Glass | 0f2af88 | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 11 | #include <log.h> |
Simon Glass | 0927a6f | 2014-10-04 11:29:50 -0600 | [diff] [blame] | 12 | #include <malloc.h> |
Simon Glass | 3ba929a | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 13 | #include <asm/global_data.h> |
Simon Glass | 2d7c499 | 2015-11-08 23:47:44 -0700 | [diff] [blame] | 14 | #include <asm/state.h> |
Simon Glass | b2c1cac | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 15 | #include <dm/root.h> |
| 16 | #include <dm/uclass-internal.h> |
Simon Glass | 75c4d41 | 2020-07-19 10:15:37 -0600 | [diff] [blame] | 17 | #include <test/test.h> |
| 18 | #include <test/test.h> |
Joe Hershberger | 3a77be5 | 2015-05-20 14:27:27 -0500 | [diff] [blame] | 19 | #include <test/ut.h> |
Simon Glass | b2c1cac | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 20 | |
| 21 | DECLARE_GLOBAL_DATA_PTR; |
| 22 | |
Simon Glass | 1ef74ab | 2021-03-07 17:35:12 -0700 | [diff] [blame] | 23 | /** |
| 24 | * dm_test_run() - Run driver model tests |
| 25 | * |
| 26 | * Run all the available driver model tests, or a selection |
| 27 | * |
| 28 | * @test_name: Name of single test to run (e.g. "dm_test_fdt_pre_reloc" or just |
| 29 | * "fdt_pre_reloc"), or NULL to run all |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 30 | * Return: 0 if all tests passed, 1 if not |
Simon Glass | 1ef74ab | 2021-03-07 17:35:12 -0700 | [diff] [blame] | 31 | */ |
| 32 | static int dm_test_run(const char *test_name) |
Simon Glass | b2c1cac | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 33 | { |
Simon Glass | b50211f | 2021-03-07 17:35:10 -0700 | [diff] [blame] | 34 | struct unit_test *tests = UNIT_TEST_SUITE_START(dm_test); |
| 35 | const int n_ents = UNIT_TEST_SUITE_COUNT(dm_test); |
Simon Glass | 5ed319b | 2021-03-07 17:35:06 -0700 | [diff] [blame] | 36 | int ret; |
Stephen Warren | fcebff5 | 2016-01-27 23:57:46 -0700 | [diff] [blame] | 37 | |
Simon Glass | 5ed319b | 2021-03-07 17:35:06 -0700 | [diff] [blame] | 38 | ret = ut_run_list("driver model", "dm_test_", tests, n_ents, test_name); |
Simon Glass | b2c1cac | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 39 | |
Simon Glass | 5ed319b | 2021-03-07 17:35:06 -0700 | [diff] [blame] | 40 | return ret ? CMD_RET_FAILURE : 0; |
Simon Glass | b2c1cac | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 41 | } |
Joe Hershberger | 9dc1d71 | 2015-05-20 14:27:29 -0500 | [diff] [blame] | 42 | |
Simon Glass | ed38aef | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 43 | int do_ut_dm(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]) |
Joe Hershberger | 9dc1d71 | 2015-05-20 14:27:29 -0500 | [diff] [blame] | 44 | { |
| 45 | const char *test_name = NULL; |
| 46 | |
| 47 | if (argc > 1) |
| 48 | test_name = argv[1]; |
| 49 | |
Simon Glass | a1add9d | 2021-03-07 17:34:46 -0700 | [diff] [blame] | 50 | return dm_test_run(test_name); |
Joe Hershberger | 9dc1d71 | 2015-05-20 14:27:29 -0500 | [diff] [blame] | 51 | } |