summaryrefslogtreecommitdiff
path: root/test/env
diff options
context:
space:
mode:
authorSimon Glass <[email protected]>2025-01-20 14:25:38 -0700
committerTom Rini <[email protected]>2025-01-24 14:34:40 -0600
commit3e5e638e62574fa1f9989f2fd35dd9dd7b6d72b5 (patch)
treefd1346c1ca2205e474a0f873b0a7740ca3ec8bf3 /test/env
parent7c012db10608afaa04c784187a1bc8f07b9ac4eb (diff)
test: Drop the function for running env tests
Use the new suite-runner to run these tests instead. Signed-off-by: Simon Glass <[email protected]>
Diffstat (limited to 'test/env')
-rw-r--r--test/env/cmd_ut_env.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/test/env/cmd_ut_env.c b/test/env/cmd_ut_env.c
index 332139bb803..81d1bb2f80d 100644
--- a/test/env/cmd_ut_env.c
+++ b/test/env/cmd_ut_env.c
@@ -4,7 +4,6 @@
* Joe Hershberger, National Instruments, [email protected]
*/
-#include <command.h>
#include <test/env.h>
#include <test/suites.h>
#include <test/ut.h>
@@ -74,11 +73,3 @@ static int env_test_env_cmd(struct unit_test_state *uts)
return 0;
}
ENV_TEST(env_test_env_cmd, UTF_CONSOLE);
-
-int do_ut_env(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
-{
- struct unit_test *tests = UNIT_TEST_SUITE_START(env);
- const int n_ents = UNIT_TEST_SUITE_COUNT(env);
-
- return cmd_ut_category("env", "env_test_", tests, n_ents, argc, argv);
-}