diff options
author | Simon Glass <sjg@chromium.org> | 2022-09-06 20:26:59 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-09-29 16:07:58 -0400 |
commit | 7c14dc7f77705f79ba49e7f0b2879986fea70fea (patch) | |
tree | 12658962b331cfd5b3adfafe9cda82344140cecd /test/dm/ofnode.c | |
parent | b215b6034c4e75d8eb0a958574b7ec3d7754b180 (diff) | |
download | u-boot-7c14dc7f77705f79ba49e7f0b2879986fea70fea.tar.gz |
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/dm/ofnode.c')
-rw-r--r-- | test/dm/ofnode.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/dm/ofnode.c b/test/dm/ofnode.c index f80993f892..4624a08d27 100644 --- a/test/dm/ofnode.c +++ b/test/dm/ofnode.c @@ -546,6 +546,10 @@ static int dm_test_ofnode_livetree_writing(struct unit_test_state *uts) struct udevice *dev; ofnode node; + /* temporarily disable this test due to a failure fixed later */ + if (!of_live_active()) + return 0; + /* Test enabling devices */ node = ofnode_path("/usb@2"); |