summaryrefslogtreecommitdiff
path: root/include/dm
diff options
context:
space:
mode:
authorTom Rini <[email protected]>2024-08-26 18:52:18 -0600
committerTom Rini <[email protected]>2024-08-26 18:52:18 -0600
commit9735cfaf904551759597067d76e2ae2ec21d582a (patch)
tree5578133191f3a0557deb2360e14eb367fab804b9 /include/dm
parent02d587a447ccae12618abbfb2b8ddd88ac3c7648 (diff)
parent695b4645325ef40c792a6e6a3849d134fcf80ed0 (diff)
Merge patch series "Tidy up console recording in tests"
Simon Glass <[email protected]> says: This series started as a small fix for checking for an empty line, but in the process several other problems were found and fixed: - fix tests which use console recording but don't set the flag - drop unnecessary resetting of the console in tests - drop unnecessary blank line before MMC output - update the docs a little - fix buildman test failure on newer Pythons - a few other minor things This series also renames the confusing flag names, so that they are easier to remember - just a UTF_ (unit-test flags) prefix.
Diffstat (limited to 'include/dm')
-rw-r--r--include/dm/test.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/dm/test.h b/include/dm/test.h
index 02737411a16..3cbf2c740d4 100644
--- a/include/dm/test.h
+++ b/include/dm/test.h
@@ -143,7 +143,7 @@ extern struct unit_test_state global_dm_test_state;
/* Declare a new driver model test */
#define DM_TEST(_name, _flags) \
- UNIT_TEST(_name, UT_TESTF_DM | UT_TESTF_CONSOLE_REC | (_flags), dm_test)
+ UNIT_TEST(_name, UTF_DM | UTF_CONSOLE | (_flags), dm_test)
/*
* struct sandbox_sdl_plat - Platform data for the SDL video driver