summaryrefslogtreecommitdiffstats
path: root/commands/test.c
diff options
context:
space:
mode:
Diffstat (limited to 'commands/test.c')
-rw-r--r--commands/test.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/commands/test.c b/commands/test.c
index fb986d47d2..67807c073f 100644
--- a/commands/test.c
+++ b/commands/test.c
@@ -220,17 +220,19 @@ out:
return expr;
}
-char *test_aliases[] = { "[", NULL};
+static const char *test_aliases[] = { "[", NULL};
-static __maybe_unused char cmd_test_help[] =
+static const __maybe_unused char cmd_test_help[] =
"Usage: test [OPTIONS]\n"
"options: !, =, !=, -eq, -ne, -ge, -gt, -le, -lt, -o, -a, -z, -n, -d, -e, -f\n"
"see 'man test' on your PC for more information.\n";
+static const __maybe_unused char cmd_test_usage[] = "minimal test like /bin/sh";
+
U_BOOT_CMD_START(test)
.aliases = test_aliases,
.maxargs = CONFIG_MAXARGS,
.cmd = do_test,
- .usage = "minimal test like /bin/sh",
+ .usage = cmd_test_usage,
U_BOOT_CMD_HELP(cmd_test_help)
U_BOOT_CMD_END