mirror of
				https://xff.cz/git/u-boot/
				synced 2025-10-31 02:15:45 +01:00 
			
		
		
		
	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: 550a9e7902 ("cmd: Update the memory-search command")
Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			516 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			516 B
		
	
	
	
		
			C
		
	
	
	
	
	
| // SPDX-License-Identifier: GPL-2.0+
 | |
| /*
 | |
|  * Executes tests for memory-related commands
 | |
|  *
 | |
|  * Copyright 2020 Google LLC
 | |
|  */
 | |
| 
 | |
| #include <common.h>
 | |
| #include <command.h>
 | |
| #include <test/suites.h>
 | |
| #include <test/test.h>
 | |
| 
 | |
| 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", "mem_test_", tests, n_ents, argc,
 | |
| 			       argv);
 | |
| }
 |