Skip to content

Commit

Permalink
test: Drop the function for running mem tests
Browse files Browse the repository at this point in the history
Use the new suite-runner to run these tests instead.

Signed-off-by: Simon Glass <[email protected]>
  • Loading branch information
sjg20 authored and trini committed Jan 24, 2025
1 parent 1ade3af commit bda212b
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 22 deletions.
1 change: 0 additions & 1 deletion include/test/suites.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ int do_ut_bloblist(struct cmd_tbl *cmdtp, int flag, int argc,
int do_ut_hush(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]);
int do_ut_loadm(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]);
int do_ut_measurement(struct cmd_tbl *cmdtp, int flag, int argc, char * const argv[]);
int do_ut_mem(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]);
int do_ut_optee(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]);
int do_ut_overlay(struct cmd_tbl *cmdtp, int flag, int argc,
char *const argv[]);
Expand Down
2 changes: 1 addition & 1 deletion test/cmd/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ endif
ifdef CONFIG_CONSOLE_RECORD
obj-$(CONFIG_CMD_PAUSE) += test_pause.o
endif
obj-y += exit.o mem.o
obj-y += exit.o
obj-$(CONFIG_X86) += cpuid.o msr.o
obj-$(CONFIG_CMD_ADDRMAP) += addrmap.o
obj-$(CONFIG_CMD_BDI) += bdinfo.o
Expand Down
19 changes: 0 additions & 19 deletions test/cmd/mem.c

This file was deleted.

2 changes: 1 addition & 1 deletion test/cmd_ut.c
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ static struct suite suites[] = {
&& defined(CONFIG_MMC_SANDBOX) && defined(CONFIG_MMC_WRITE)
SUITE(mbr),
#endif
SUITE_CMD(mem, do_ut_mem),
SUITE(mem),
#if defined(CONFIG_SANDBOX) && defined(CONFIG_CMD_SETEXPR)
SUITE_CMD(setexpr, do_ut_setexpr),
#endif
Expand Down

0 comments on commit bda212b

Please sign in to comment.