summaryrefslogtreecommitdiff
path: root/test/cmd/mbr.c
diff options
context:
space:
mode:
authorSimon Glass <[email protected]>2024-08-22 07:57:50 -0600
committerTom Rini <[email protected]>2024-08-26 18:51:49 -0600
commit9b99762eff5eac971cd1ae561e443252afb7b985 (patch)
treede2af28b3f1840d9acac81fa0e8b26940cabea29 /test/cmd/mbr.c
parentb073d48e8dd7d178ebd237089be730d15c72ddfc (diff)
test: Rename UTF_CONSOLE_REC to UTF_CONSOLE
The _REC suffix doesn't add much. Really what we want to know is whether the test uses the console, so rename this flag. Signed-off-by: Simon Glass <[email protected]> Reviewed-by: Mattijs Korpershoek <[email protected]>
Diffstat (limited to 'test/cmd/mbr.c')
-rw-r--r--test/cmd/mbr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/cmd/mbr.c b/test/cmd/mbr.c
index e4b694b728f..0c3698afb0b 100644
--- a/test/cmd/mbr.c
+++ b/test/cmd/mbr.c
@@ -465,7 +465,7 @@ static int mbr_test_run(struct unit_test_state *uts)
}
/* Declare mbr test */
-UNIT_TEST(mbr_test_run, UTF_CONSOLE_REC, mbr_test);
+UNIT_TEST(mbr_test_run, UTF_CONSOLE, mbr_test);
int do_ut_mbr(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
{
@@ -479,4 +479,4 @@ static int dm_test_cmd_mbr(struct unit_test_state *uts)
{
return mbr_test_run(uts);
}
-DM_TEST(dm_test_cmd_mbr, UTF_SCAN_FDT | UTF_CONSOLE_REC);
+DM_TEST(dm_test_cmd_mbr, UTF_SCAN_FDT | UTF_CONSOLE);