aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Delaunay <patrick.delaunay@st.com>2020-11-19 10:08:42 +0100
committerTom Rini <trini@konsulko.com>2021-01-16 12:11:43 -0500
commit4740cc835cc10c16a28c4d34bfb5e1ad60abbd2f (patch)
treeead5fd1aa4dc2caad604b2b9dfd1e66391574ce5
parent83ff38607e6e4112a0e8a145ca781a8ab11c021f (diff)
downloadu-boot-4740cc835cc10c16a28c4d34bfb5e1ad60abbd2f.zip
u-boot-4740cc835cc10c16a28c4d34bfb5e1ad60abbd2f.tar.gz
u-boot-4740cc835cc10c16a28c4d34bfb5e1ad60abbd2f.tar.bz2
test: correct the test prefix in ut cmd_mem
Align the prefix used in cmd_ut_category function and name of tests for ut mem. This patch solves the issues detected by "make qcheck" after previous patch. Fixes: 550a9e7902ce ("cmd: Update the memory-search command") Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com> Reviewed-by: Simon Glass <sjg@chromium.org>
-rw-r--r--test/cmd/mem.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/cmd/mem.c b/test/cmd/mem.c
index fa6770e..fbaa8a4 100644
--- a/test/cmd/mem.c
+++ b/test/cmd/mem.c
@@ -15,6 +15,6 @@ int do_ut_mem(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
struct unit_test *tests = ll_entry_start(struct unit_test, mem_test);
const int n_ents = ll_entry_count(struct unit_test, mem_test);
- return cmd_ut_category("cmd_mem", "cmd_mem_", tests, n_ents, argc,
+ return cmd_ut_category("cmd_mem", "mem_test_", tests, n_ents, argc,
argv);
}