summaryrefslogtreecommitdiff
path: root/test/cmd/pci_mps.c
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2025-01-20 14:25:29 -0700
committerTom Rini <trini@konsulko.com>2025-01-24 14:34:40 -0600
commit4d31a3bd3370f8fc9d1a484129770a4de4a15d70 (patch)
treea6ce1ad2c4f8ae574dd9e57f5f0e7a71087aa508 /test/cmd/pci_mps.c
parentea2bb8e20f9759f98db93b24728ed478f06dc875 (diff)
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>
Diffstat (limited to 'test/cmd/pci_mps.c')
-rw-r--r--test/cmd/pci_mps.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/cmd/pci_mps.c b/test/cmd/pci_mps.c
index a265105600c..0c57d15d636 100644
--- a/test/cmd/pci_mps.c
+++ b/test/cmd/pci_mps.c
@@ -35,6 +35,6 @@ int do_ut_pci_mps(struct cmd_tbl *cmdtp, int flag, int argc,
struct unit_test *tests = UNIT_TEST_SUITE_START(pci_mps_test);
const int n = UNIT_TEST_SUITE_COUNT(pci_mps_test);
- return cmd_ut_category("cmd_pci_mps", "pci_mps_test_", tests, n,
+ return cmd_ut_category("pci_mps", "pci_mps_test_", tests, n,
argc, argv);
}