forked from OERV-BSP/u-boot
test: Rename test suites to match their linker-list name
Some suites have a different name from that used in the linker list. That makes it hard to programmatically match the name printed when the suite runs to the linker-list name it has. Update the names so they are the same. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
@@ -13,8 +13,8 @@
|
||||
|
||||
int do_ut_cmd(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
|
||||
{
|
||||
struct unit_test *tests = UNIT_TEST_SUITE_START(cmd_test);
|
||||
const int n_ents = UNIT_TEST_SUITE_COUNT(cmd_test);
|
||||
struct unit_test *tests = UNIT_TEST_SUITE_START(cmd);
|
||||
const int n_ents = UNIT_TEST_SUITE_COUNT(cmd);
|
||||
|
||||
return cmd_ut_category("cmd", "cmd_test_", tests, n_ents, argc, argv);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user