aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2020-11-05 10:33:40 -0700
committerTom Rini <trini@konsulko.com>2020-12-04 16:09:26 -0500
commit4dcb81545ab09b6cb4ee1f3c870fb3131984cf6f (patch)
tree4388177afffd62d56b9d1c2a4a99313e7e216386 /test
parent4ae42643d0d71dbb5af45d19fa05b7a6807150c0 (diff)
downloadu-boot-4dcb81545ab09b6cb4ee1f3c870fb3131984cf6f.zip
u-boot-4dcb81545ab09b6cb4ee1f3c870fb3131984cf6f.tar.gz
u-boot-4dcb81545ab09b6cb4ee1f3c870fb3131984cf6f.tar.bz2
bootm: Rename fixup_silent_linux()
We want to add more processing to this function. Before doing so, rename it to bootm_process_cmdline_env(), which is more generic. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'test')
-rw-r--r--test/bootm.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/bootm.c b/test/bootm.c
index ab17116..b69bfad 100644
--- a/test/bootm.c
+++ b/test/bootm.c
@@ -23,26 +23,26 @@ static int bootm_test_silent_var(struct unit_test_state *uts)
/* 'silent_linux' not set should do nothing */
env_set("silent_linux", NULL);
env_set("bootargs", CONSOLE_STR);
- ut_assertok(fixup_silent_linux());
+ ut_assertok(bootm_process_cmdline_env());
ut_asserteq_str(CONSOLE_STR, env_get("bootargs"));
env_set("bootargs", NULL);
- ut_assertok(fixup_silent_linux());
+ ut_assertok(bootm_process_cmdline_env());
ut_assertnull(env_get("bootargs"));
ut_assertok(env_set("silent_linux", "no"));
env_set("bootargs", CONSOLE_STR);
- ut_assertok(fixup_silent_linux());
+ ut_assertok(bootm_process_cmdline_env());
ut_asserteq_str(CONSOLE_STR, env_get("bootargs"));
ut_assertok(env_set("silent_linux", "yes"));
env_set("bootargs", CONSOLE_STR);
- ut_assertok(fixup_silent_linux());
+ ut_assertok(bootm_process_cmdline_env());
ut_asserteq_str("console=", env_get("bootargs"));
/* Empty buffer should still add the string */
env_set("bootargs", NULL);
- ut_assertok(fixup_silent_linux());
+ ut_assertok(bootm_process_cmdline_env());
ut_asserteq_str("console=", env_get("bootargs"));
return 0;