summaryrefslogtreecommitdiff
path: root/test/test-main.c
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2021-03-07 17:34:56 -0700
committerTom Rini <trini@konsulko.com>2021-03-12 09:57:30 -0500
commit72b524cf426697e764c9c63611d0f6743f50f0f5 (patch)
tree7496d35d4a59e8e3bb34d35dc918c4d61c956565 /test/test-main.c
parent47ec3ede4efe214b4debdaf845d6eb622154f405 (diff)
test: Handle driver model reinit in test_pre_run()
For driver model tests we want to reinit the data structures so that everything is in a known state before the test runs. This avoids one test changing something that breaks a subsequent tests. Move the call for this into test_pre_run(). Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'test/test-main.c')
-rw-r--r--test/test-main.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/test-main.c b/test/test-main.c
index 6f0d32f7e2..f14b7b09f7 100644
--- a/test/test-main.c
+++ b/test/test-main.c
@@ -30,6 +30,9 @@ static int do_autoprobe(struct unit_test_state *uts)
int test_pre_run(struct unit_test_state *uts, struct unit_test *test)
{
+ if (test->flags & UT_TESTF_DM)
+ ut_assertok(dm_test_init(uts));
+
ut_set_skip_delays(uts, false);
uts->start = mallinfo();