diff options
author | Simon Glass <sjg@chromium.org> | 2021-03-07 17:34:46 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-03-12 09:57:29 -0500 |
commit | 409f4a2a7280abc6fe22447f7c1933fc5f669539 (patch) | |
tree | 89274cb2d60ecddb11d1ea2f6fe7d9e834d46801 /arch/sandbox | |
parent | 4bc639ee1181dc25df733da5de76ce4ea4b3f406 (diff) | |
download | u-boot-409f4a2a7280abc6fe22447f7c1933fc5f669539.tar.gz |
test: Rename test-main.c to test-dm.c
This is the main test function for driver model but not for other tests.
Rename the file and the function so this is clear.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/sandbox')
-rw-r--r-- | arch/sandbox/cpu/spl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sandbox/cpu/spl.c b/arch/sandbox/cpu/spl.c index 6926e244ca..3779d58c3f 100644 --- a/arch/sandbox/cpu/spl.c +++ b/arch/sandbox/cpu/spl.c @@ -65,7 +65,7 @@ void spl_board_init(void) if (state->run_unittests) { int ret; - ret = dm_test_main(state->select_unittests); + ret = dm_test_run(state->select_unittests); /* continue execution into U-Boot */ } } |