diff options
author | Simon Glass | 2022-09-06 20:26:59 -0600 |
---|---|---|
committer | Tom Rini | 2022-09-29 16:07:58 -0400 |
commit | 7c14dc7f77705f79ba49e7f0b2879986fea70fea (patch) | |
tree | 12658962b331cfd5b3adfafe9cda82344140cecd /include/test | |
parent | b215b6034c4e75d8eb0a958574b7ec3d7754b180 (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 'include/test')
-rw-r--r-- | include/test/test.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/test/test.h b/include/test/test.h index 2b68331b546..799e9180863 100644 --- a/include/test/test.h +++ b/include/test/test.h @@ -49,7 +49,7 @@ enum { /* do extra driver model init and uninit */ UT_TESTF_DM = BIT(6), /* live or flat device tree, but not both in the same executable */ - UT_TESTF_LIVE_OR_FLAT = BIT(4), + UT_TESTF_LIVE_OR_FLAT = BIT(7), }; /** |