Re: [PATCH 2/3] test: correct the test prefix in ut cmd_mem

2021-01-18 Thread Tom Rini
On Thu, Nov 19, 2020 at 10:08:42AM +0100, Patrick Delaunay wrote:

> 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 
> Reviewed-by: Simon Glass 

Applied to u-boot/master, thanks!

-- 
Tom


signature.asc
Description: PGP signature


Re: [PATCH 2/3] test: correct the test prefix in ut cmd_mem

2020-11-21 Thread Simon Glass
On Thu, 19 Nov 2020 at 03:09, Patrick Delaunay  wrote:
>
> 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 
> ---
>
>  test/cmd/mem.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>

Reviewed-by: Simon Glass 


[PATCH 2/3] test: correct the test prefix in ut cmd_mem

2020-11-19 Thread Patrick Delaunay
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 
---

 test/cmd/mem.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/test/cmd/mem.c b/test/cmd/mem.c
index fa6770e8c0..fbaa8a4b3c 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);
 }
-- 
2.17.1