From: Heinrich Schuchardt Date: Sun, 23 Nov 2025 22:57:02 +0000 (+0100) Subject: test: the cmd/font test requires the sandbox X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=061cdb247cb41decbc598d301cbb20131948f06b;p=thirdparty%2Fu-boot.git test: the cmd/font test requires the sandbox The font test makes assumptions about video devices and selected fonts that may not hold true on other configurations like qemu-x86_64_defconfig. Signed-off-by: Heinrich Schuchardt --- diff --git a/test/cmd/Makefile b/test/cmd/Makefile index d7ff11e458a..2476068aee6 100644 --- a/test/cmd/Makefile +++ b/test/cmd/Makefile @@ -19,7 +19,6 @@ endif obj-$(CONFIG_CMD_BDI) += bdinfo.o obj-$(CONFIG_COREBOOT_SYSINFO) += coreboot.o obj-$(CONFIG_CMD_FDT) += fdt.o -obj-$(CONFIG_CONSOLE_TRUETYPE) += font.o obj-$(CONFIG_CMD_HASH) += hash.o obj-$(CONFIG_CMD_HISTORY) += history.o obj-$(CONFIG_CMD_I3C) += i3c.o @@ -33,6 +32,7 @@ endif obj-$(CONFIG_CMD_QFW) += qfw.o obj-$(CONFIG_CMD_SEAMA) += seama.o ifdef CONFIG_SANDBOX +obj-$(CONFIG_CONSOLE_TRUETYPE) += font.o obj-$(CONFIG_CMD_MBR) += mbr.o obj-$(CONFIG_CMD_PINMUX) += pinmux.o obj-$(CONFIG_CMD_PWM) += pwm.o