diff options
author | Simon Glass <sjg@chromium.org> | 2024-08-22 07:57:58 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-08-26 18:51:49 -0600 |
commit | 0af38d12d98070bc09001e200b15c7e0d6a80388 (patch) | |
tree | 0fc583e69b99668aa716d3de5f56ba2b362e0711 /test/cmd/font.c | |
parent | 0e77c2b6117c1a8497676b33de85766c3f3a904c (diff) |
test: cmd: Drop unnecessary console_record_reset_enable()
It is seldom necessary to call this function. Drop its use in the
command tests.
Add a few extra checks to the wget test so that resetting is not
needed.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'test/cmd/font.c')
-rw-r--r-- | test/cmd/font.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/test/cmd/font.c b/test/cmd/font.c index 08600dfe2eb..6f4e54e7f3f 100644 --- a/test/cmd/font.c +++ b/test/cmd/font.c @@ -26,7 +26,6 @@ static int font_test_base(struct unit_test_state *uts) ut_assertok(uclass_first_device_err(UCLASS_VIDEO, &dev)); ut_assertok(uclass_first_device_err(UCLASS_VIDEO_CONSOLE, &dev)); - ut_assertok(console_record_reset_enable()); ut_assertok(run_command("font list", 0)); ut_assert_nextline("nimbus_sans_l_regular"); if (IS_ENABLED(CONFIG_CONSOLE_TRUETYPE_CANTORAONE)) |