summaryrefslogtreecommitdiff
path: root/include/test
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2021-03-08 03:34:45 +0300
committerTom Rini <trini@konsulko.com>2021-03-12 17:57:29 +0300
commit4bc639ee1181dc25df733da5de76ce4ea4b3f406 (patch)
treedc6d6976cb550f5b5d93f218bcce9acc89eab127 /include/test
parent80b80d8944024eb1c8d8f0fc51cb4847d26ed3c9 (diff)
downloadu-boot-4bc639ee1181dc25df733da5de76ce4ea4b3f406.tar.xz
test: Mark all driver model tests with a flag
Add a flag for driver model tests, so we can do special processing for them. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/test')
-rw-r--r--include/test/test.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/test/test.h b/include/test/test.h
index 3fdaa2b5e5..27585507d8 100644
--- a/include/test/test.h
+++ b/include/test/test.h
@@ -36,6 +36,8 @@ enum {
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 */
+ /* do extra driver model init and uninit */
+ UT_TESTF_DM = BIT(6),
};
/**