test: Drop the function for running seama tests
Use the new suite-runner to run these tests instead.
It is not clear that these actually work, since they are not enabled on
sandbox for some reason.
Signed-off-by: Simon Glass <sjg@chromium.org>
Acked-by: Linus Walleij <linus.walleij@linaro.org>
diff --git a/test/cmd/seama.c b/test/cmd/seama.c
index 39590d1..1edc3fc 100644
--- a/test/cmd/seama.c
+++ b/test/cmd/seama.c
@@ -56,12 +56,3 @@
return 0;
}
SEAMA_TEST(seama_test_index, UTF_CONSOLE);
-
-int do_ut_seama(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
-{
- struct unit_test *tests = UNIT_TEST_SUITE_START(seama);
- const int n_ents = UNIT_TEST_SUITE_COUNT(seama);
-
- return cmd_ut_category("seama", "seama_test_", tests, n_ents, argc,
- argv);
-}
diff --git a/test/cmd_ut.c b/test/cmd_ut.c
index 080a36a..ed6bc3a 100644
--- a/test/cmd_ut.c
+++ b/test/cmd_ut.c
@@ -187,7 +187,7 @@
SUITE(pci_mps),
#endif
#ifdef CONFIG_CMD_SEAMA
- SUITE_CMD(seama, do_ut_seama),
+ SUITE(seama),
#endif
#ifdef CONFIG_CMD_UPL
SUITE_CMD(upl, do_ut_upl),