diff options
author | Simon Glass <sjg@chromium.org> | 2025-01-20 14:25:45 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2025-01-24 14:34:40 -0600 |
commit | bda212bad51797a44664bf2563490c0a3f3c4576 (patch) | |
tree | c6728e4ff090826c0daf16a91e47c1be7069f085 /test/cmd/mem.c | |
parent | 1ade3afa2da2242ad1006dc393a3bb3242226d4c (diff) |
test: Drop the function for running mem tests
Use the new suite-runner to run these tests instead.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'test/cmd/mem.c')
-rw-r--r-- | test/cmd/mem.c | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/test/cmd/mem.c b/test/cmd/mem.c deleted file mode 100644 index 2b78e421a9c..00000000000 --- a/test/cmd/mem.c +++ /dev/null @@ -1,19 +0,0 @@ -// SPDX-License-Identifier: GPL-2.0+ -/* - * Executes tests for memory-related commands - * - * Copyright 2020 Google LLC - */ - -#include <command.h> -#include <test/suites.h> -#include <test/test.h> - -int do_ut_mem(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]) -{ - struct unit_test *tests = UNIT_TEST_SUITE_START(mem); - const int n_ents = UNIT_TEST_SUITE_COUNT(mem); - - return cmd_ut_category("mem", "mem_test_", tests, n_ents, argc, - argv); -} |