diff options
author | Tom Rini <trini@konsulko.com> | 2024-08-15 21:49:05 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-08-23 15:59:39 -0600 |
commit | 2191c117338849639a7c0519d4908fce43783c0e (patch) | |
tree | 1bf792c9ba03ea2be80d03af8106df79690a0aef | |
parent | 916a4704fc868ef230ad920851e93161eaf995b4 (diff) |
test/cmd: Move wget test to under a sandbox guard
This test is sandbox-centric, so guard it so.
Reviewed-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Tom Rini <trini@konsulko.com>
-rw-r--r-- | test/cmd/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/cmd/Makefile b/test/cmd/Makefile index 478ef4c6f05..8f2134998ad 100644 --- a/test/cmd/Makefile +++ b/test/cmd/Makefile @@ -30,7 +30,7 @@ ifdef CONFIG_SANDBOX obj-$(CONFIG_CMD_MBR) += mbr.o obj-$(CONFIG_CMD_READ) += rw.o obj-$(CONFIG_CMD_SETEXPR) += setexpr.o +obj-$(CONFIG_CMD_WGET) += wget.o obj-$(CONFIG_ARM_FFA_TRANSPORT) += armffa.o endif obj-$(CONFIG_CMD_TEMPERATURE) += temperature.o -obj-$(CONFIG_CMD_WGET) += wget.o |