summaryrefslogtreecommitdiff
path: root/arch/sandbox
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2021-03-08 03:34:46 +0300
committerTom Rini <trini@konsulko.com>2021-03-12 17:57:29 +0300
commit409f4a2a7280abc6fe22447f7c1933fc5f669539 (patch)
tree89274cb2d60ecddb11d1ea2f6fe7d9e834d46801 /arch/sandbox
parent4bc639ee1181dc25df733da5de76ce4ea4b3f406 (diff)
downloadu-boot-409f4a2a7280abc6fe22447f7c1933fc5f669539.tar.xz
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.c2
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 */
}
}