summaryrefslogtreecommitdiff
path: root/test/cmd/setexpr.c
diff options
context:
space:
mode:
authorSimon Glass <[email protected]>2025-01-20 14:25:46 -0700
committerTom Rini <[email protected]>2025-01-24 14:34:40 -0600
commitcebdc5376f9663254387c5c59c095f9f64b3eb99 (patch)
treed71af618d1f8ceae5f727c25b69efd787dcce1ff /test/cmd/setexpr.c
parentbda212bad51797a44664bf2563490c0a3f3c4576 (diff)
test: Drop the function for running setexpr tests
Use the new suite-runner to run these tests instead. Signed-off-by: Simon Glass <[email protected]>
Diffstat (limited to 'test/cmd/setexpr.c')
-rw-r--r--test/cmd/setexpr.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/test/cmd/setexpr.c b/test/cmd/setexpr.c
index 49eac5890aa..7f318a42ead 100644
--- a/test/cmd/setexpr.c
+++ b/test/cmd/setexpr.c
@@ -479,12 +479,3 @@ static int setexpr_test_fmt(struct unit_test_state *uts)
}
SETEXPR_TEST(setexpr_test_fmt, UTF_CONSOLE);
#endif
-
-int do_ut_setexpr(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
-{
- struct unit_test *tests = UNIT_TEST_SUITE_START(setexpr);
- const int n_ents = UNIT_TEST_SUITE_COUNT(setexpr);
-
- return cmd_ut_category("setexpr", "setexpr_test_", tests, n_ents,
- argc, argv);
-}