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>
diff --git a/test/boot/upl.c b/test/boot/upl.c
index 99f02b7..ef65cf3 100644
--- a/test/boot/upl.c
+++ b/test/boot/upl.c
@@ -432,6 +432,5 @@
struct unit_test *tests = UNIT_TEST_SUITE_START(upl_test);
const int n_ents = UNIT_TEST_SUITE_COUNT(upl_test);
- return cmd_ut_category("cmd_upl", "cmd_upl_", tests, n_ents, argc,
- argv);
+ return cmd_ut_category("upl", "cmd_upl_", tests, n_ents, argc, argv);
}