summaryrefslogtreecommitdiff
path: root/test/cmd
diff options
context:
space:
mode:
authorSimon Glass <[email protected]>2025-01-20 14:25:53 -0700
committerTom Rini <[email protected]>2025-01-24 14:34:40 -0600
commita2cf88d807a59ec20eabdb32189a598b59fc0113 (patch)
tree2dc5b17d5f4bfeb23b820822c4f045032d63ef96 /test/cmd
parent822cb558e1a9415c3b4b8069fd62734d3d37ddfe (diff)
test: Drop the function for running pci_mps tests
Use the new suite-runner to run these tests instead. Signed-off-by: Simon Glass <[email protected]>
Diffstat (limited to 'test/cmd')
-rw-r--r--test/cmd/pci_mps.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/test/cmd/pci_mps.c b/test/cmd/pci_mps.c
index 2595ea103ff..8b3ea4a6134 100644
--- a/test/cmd/pci_mps.c
+++ b/test/cmd/pci_mps.c
@@ -28,13 +28,3 @@ static int test_pci_mps_safe(struct unit_test_state *uts)
return 0;
}
PCI_MPS_TEST(test_pci_mps_safe, UTF_CONSOLE);
-
-int do_ut_pci_mps(struct cmd_tbl *cmdtp, int flag, int argc,
- char * const argv[])
-{
- struct unit_test *tests = UNIT_TEST_SUITE_START(pci_mps);
- const int n = UNIT_TEST_SUITE_COUNT(pci_mps);
-
- return cmd_ut_category("pci_mps", "pci_mps_test_", tests, n,
- argc, argv);
-}