aboutsummaryrefslogtreecommitdiff
path: root/test/test-main.c
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2022-09-06 20:26:59 -0600
committerTom Rini <trini@konsulko.com>2022-09-29 16:07:58 -0400
commit7c14dc7f77705f79ba49e7f0b2879986fea70fea (patch)
tree12658962b331cfd5b3adfafe9cda82344140cecd /test/test-main.c
parentb215b6034c4e75d8eb0a958574b7ec3d7754b180 (diff)
test: Fix missing livetree test runs
At present the live tree tests are not run on sandbox. This bug is in two parts, with a duplicate flag value and incorrect logic in the test runner. This was not noticed because the bug was fixed in a later commit and does not cause test failures. Fix this. Fixes: 7b1dfc9fd7e ("dm: core: Prepare for updating the device tree with ofnode") 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, 1 insertions, 2 deletions
diff --git a/test/test-main.c b/test/test-main.c
index ae34002a3d..90a324bf70 100644
--- a/test/test-main.c
+++ b/test/test-main.c
@@ -343,8 +343,7 @@ static int ut_run_test_live_flat(struct unit_test_state *uts,
/* Run with the live tree if possible */
runs = 0;
if (CONFIG_IS_ENABLED(OF_LIVE)) {
- if (!(test->flags &
- (UT_TESTF_FLAT_TREE | UT_TESTF_LIVE_OR_FLAT))) {
+ if (!(test->flags & UT_TESTF_FLAT_TREE)) {
uts->of_live = true;
ut_assertok(ut_run_test(uts, test, test->name));
runs++;