summaryrefslogtreecommitdiff
path: root/test/cmd
diff options
context:
space:
mode:
authorSimon Glass <[email protected]>2025-01-20 14:25:39 -0700
committerTom Rini <[email protected]>2025-01-24 14:34:40 -0600
commitca917e491f81916ef4accc34615680ffae161430 (patch)
tree9983619c169230c062a9e9100da60a5e1bd955ea /test/cmd
parent3e5e638e62574fa1f9989f2fd35dd9dd7b6d72b5 (diff)
test: Drop the function for running exit 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/exit.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/test/cmd/exit.c b/test/cmd/exit.c
index d1eacdc36c2..71c37edcdf6 100644
--- a/test/cmd/exit.c
+++ b/test/cmd/exit.c
@@ -110,12 +110,3 @@ static int cmd_exit_test(struct unit_test_state *uts)
return 0;
}
EXIT_TEST(cmd_exit_test, UTF_CONSOLE);
-
-int do_ut_exit(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
-{
- struct unit_test *tests = UNIT_TEST_SUITE_START(exit);
- const int n_ents = UNIT_TEST_SUITE_COUNT(exit);
-
- return cmd_ut_category("exit", "exit_test_", tests, n_ents,
- argc, argv);
-}