diff options
author | Simon Glass <sjg@chromium.org> | 2020-07-28 19:41:13 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-08-07 22:31:32 -0400 |
commit | 132644f56ebb7399fb139d6b9c9e54ef0c218ea9 (patch) | |
tree | df8a2248a8443f6c02d8bf029d65f5b89c9197b0 /include/test/test.h | |
parent | e180c2b129016baf21086eca73767844e7eff185 (diff) |
test: Add a flag for tests that need console recording
Allow tests that need console recording to be marked, so they can be
skipped if it is not available.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/test/test.h')
-rw-r--r-- | include/test/test.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/test/test.h b/include/test/test.h index ff92c39006..67c7d69d48 100644 --- a/include/test/test.h +++ b/include/test/test.h @@ -35,6 +35,7 @@ enum { UT_TESTF_SCAN_FDT = BIT(2), /* scan device tree */ UT_TESTF_FLAT_TREE = BIT(3), /* test needs flat DT */ UT_TESTF_LIVE_TREE = BIT(4), /* needs live device tree */ + UT_TESTF_CONSOLE_REC = BIT(5), /* needs console recording */ }; /** |