aboutsummaryrefslogtreecommitdiff
path: root/test/test-main.c
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2024-08-22 07:57:50 -0600
committerTom Rini <trini@konsulko.com>2024-08-26 18:51:49 -0600
commit9b99762eff5eac971cd1ae561e443252afb7b985 (patch)
treede2af28b3f1840d9acac81fa0e8b26940cabea29 /test/test-main.c
parentb073d48e8dd7d178ebd237089be730d15c72ddfc (diff)
downloadu-boot-9b99762eff5eac971cd1ae561e443252afb7b985.zip
u-boot-9b99762eff5eac971cd1ae561e443252afb7b985.tar.gz
u-boot-9b99762eff5eac971cd1ae561e443252afb7b985.tar.bz2
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 <sjg@chromium.org> Reviewed-by: Mattijs Korpershoek <mkorpershoek@baylibre.com>
Diffstat (limited to 'test/test-main.c')
-rw-r--r--test/test-main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test-main.c b/test/test-main.c
index 2ee703e..63e8be0 100644
--- a/test/test-main.c
+++ b/test/test-main.c
@@ -333,7 +333,7 @@ static int test_pre_run(struct unit_test_state *uts, struct unit_test *test)
}
}
- if (test->flags & UTF_CONSOLE_REC) {
+ if (test->flags & UTF_CONSOLE) {
int ret = console_record_reset_enable();
if (ret) {