diff mbox series

[v4,03/24] bootstd: Add UT_TESTF_CONSOLE_REC to bootflow tests

Message ID 20240901224214.591389-4-sjg@chromium.org
State New
Delegated to: Tom Rini
Headers show
Series None | expand

Commit Message

Simon Glass Sept. 1, 2024, 10:41 p.m. UTC
Quite a few tests use console recording without indicating this, using
the UT_TESTF_CONSOLE_REC flag. Fix this to avoid strange failures.

Signed-off-by: Simon Glass <sjg@chromium.org>
---

(no changes since v1)

 test/boot/bootflow.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/test/boot/bootflow.c b/test/boot/bootflow.c
index 6ad63afe90a..da55d5cfe69 100644
--- a/test/boot/bootflow.c
+++ b/test/boot/bootflow.c
@@ -362,7 +362,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 */