mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-22 20:58:22 +00:00
test: Drop the function for running pci_mps tests
Use the new suite-runner to run these tests instead. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
822cb558e1
commit
a2cf88d807
3 changed files with 1 additions and 13 deletions
|
@ -35,8 +35,6 @@ int do_ut_bootstd(struct cmd_tbl *cmdtp, int flag, int argc,
|
||||||
int do_ut_optee(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]);
|
int do_ut_optee(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]);
|
||||||
int do_ut_overlay(struct cmd_tbl *cmdtp, int flag, int argc,
|
int do_ut_overlay(struct cmd_tbl *cmdtp, int flag, int argc,
|
||||||
char *const argv[]);
|
char *const argv[]);
|
||||||
int do_ut_pci_mps(struct cmd_tbl *cmdtp, int flag, int argc,
|
|
||||||
char *const argv[]);
|
|
||||||
int do_ut_seama(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]);
|
int do_ut_seama(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]);
|
||||||
int do_ut_upl(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]);
|
int do_ut_upl(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]);
|
||||||
|
|
||||||
|
|
|
@ -28,13 +28,3 @@ static int test_pci_mps_safe(struct unit_test_state *uts)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
PCI_MPS_TEST(test_pci_mps_safe, UTF_CONSOLE);
|
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);
|
|
||||||
}
|
|
||||||
|
|
|
@ -184,7 +184,7 @@ static struct suite suites[] = {
|
||||||
SUITE(loadm),
|
SUITE(loadm),
|
||||||
#endif
|
#endif
|
||||||
#ifdef CONFIG_CMD_PCI_MPS
|
#ifdef CONFIG_CMD_PCI_MPS
|
||||||
SUITE_CMD(pci_mps, do_ut_pci_mps),
|
SUITE(pci_mps),
|
||||||
#endif
|
#endif
|
||||||
#ifdef CONFIG_CMD_SEAMA
|
#ifdef CONFIG_CMD_SEAMA
|
||||||
SUITE_CMD(seama, do_ut_seama),
|
SUITE_CMD(seama, do_ut_seama),
|
||||||
|
|
Loading…
Add table
Reference in a new issue