aboutsummaryrefslogtreecommitdiff
path: root/include/test
diff options
context:
space:
mode:
authorSimon Glass2022-09-06 20:27:07 -0600
committerTom Rini2022-09-29 16:09:56 -0400
commit2b90e0d54efe6e83c9313c863184b71eb811853e (patch)
tree00570a7ec4f29d347e0605434eb71d94e61dae84 /include/test
parenteb6e903a569d35032ca3772d93c26fb1071ab3ae (diff)
test: Drop the UT_TESTF_LIVE_OR_FLAT flag
This was a workaround for a rare situation. Now that it will be more common and we have a proper fix, drop the flag. We can run both types of tests in the same sandbox executable, even if the flat device tree is modified. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/test')
-rw-r--r--include/test/test.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/include/test/test.h b/include/test/test.h
index 92215d427b0..51efaecba77 100644
--- a/include/test/test.h
+++ b/include/test/test.h
@@ -54,8 +54,6 @@ enum {
UT_TESTF_CONSOLE_REC = BIT(5), /* needs console recording */
/* do extra driver model init and uninit */
UT_TESTF_DM = BIT(6),
- /* live or flat device tree, but not both in the same executable */
- UT_TESTF_LIVE_OR_FLAT = BIT(7),
};
/**