git.openpandora.org
/
pandora-u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4b8b27e
)
test: Move dm_scan_plat() to test_pre_run()
author
Simon Glass
<sjg@chromium.org>
Mon, 8 Mar 2021 00:34:52 +0000
(17:34 -0700)
committer
Tom Rini
<trini@konsulko.com>
Fri, 12 Mar 2021 14:57:29 +0000
(09:57 -0500)
Move this step over to the pre-run function.
Signed-off-by: Simon Glass <sjg@chromium.org>
test/dm/test-dm.c
patch
|
blob
|
history
test/test-main.c
patch
|
blob
|
history
diff --git
a/test/dm/test-dm.c
b/test/dm/test-dm.c
index
c2e1a1b
..
18877c7
100644
(file)
--- a/
test/dm/test-dm.c
+++ b/
test/dm/test-dm.c
@@
-74,8
+74,6
@@
static int dm_do_test(struct unit_test_state *uts, struct unit_test *test,
ut_assertok(dm_test_init(uts, of_live));
uts->start = mallinfo();
- if (test->flags & UT_TESTF_SCAN_PDATA)
- ut_assertok(dm_scan_plat(false));
ut_assertok(test_pre_run(uts, test));
diff --git
a/test/test-main.c
b/test/test-main.c
index
bd2f08a
..
fe96d73
100644
(file)
--- a/
test/test-main.c
+++ b/
test/test-main.c
@@
-34,6
+34,9
@@
int test_pre_run(struct unit_test_state *uts, struct unit_test *test)
if (!(test->flags & UT_TESTF_DM))
uts->start = mallinfo();
+ if (test->flags & UT_TESTF_SCAN_PDATA)
+ ut_assertok(dm_scan_plat(false));
+
if (test->flags & UT_TESTF_PROBE_TEST)
ut_assertok(do_autoprobe(uts));