diff options
author | Simon Glass <sjg@chromium.org> | 2024-10-19 09:21:58 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-11-03 21:27:12 -0600 |
commit | 5936d863cd5626acaf616822c56ac6c79c6893a4 (patch) | |
tree | 8d361b066ff722baf97cf00aa2c64ed795e82468 | |
parent | 3ef48a7c66eda99654aec3fa63a0465120941bb6 (diff) |
test: boot: Update bootflow_iter() for console checking
This test checks console output so should have the UTF_CONSOLE flag. Add
it.
Signed-off-by: Simon Glass <sjg@chromium.org>
-rw-r--r-- | test/boot/bootflow.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/boot/bootflow.c b/test/boot/bootflow.c index 8762d21ef3c..2f859c40adb 100644 --- a/test/boot/bootflow.c +++ b/test/boot/bootflow.c @@ -370,7 +370,7 @@ static int bootflow_iter(struct unit_test_state *uts) return 0; } -BOOTSTD_TEST(bootflow_iter, UTF_DM | UTF_SCAN_FDT); +BOOTSTD_TEST(bootflow_iter, UTF_DM | UTF_SCAN_FDT | UTF_CONSOLE); #if defined(CONFIG_SANDBOX) && defined(CONFIG_BOOTMETH_GLOBAL) /* Check using the system bootdev */ |