From: Alex Bennée Date: Fri, 25 Jul 2025 15:45:10 +0000 (+0100) Subject: tests/tcg: skip libsyscall.so on softmmu tests X-Git-Tag: v10.1.0-rc1~5^2~7 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=78029e9283f69140d377f589b76e369971dbe0e3;p=thirdparty%2Fqemu.git tests/tcg: skip libsyscall.so on softmmu tests It isn't testing anything and just expanding the runtime of testing. Reviewed-by: Manos Pitsidianakis Signed-off-by: Alex Bennée Message-ID: <20250725154517.3523095-8-alex.bennee@linaro.org> --- diff --git a/tests/tcg/Makefile.target b/tests/tcg/Makefile.target index af68f11664..3d96182a7b 100644 --- a/tests/tcg/Makefile.target +++ b/tests/tcg/Makefile.target @@ -155,6 +155,12 @@ VPATH+=$(PLUGIN_LIB) # For example, libpatch.so only needs to run against the arch-specific patch # target test, so we explicitly run it in the arch-specific Makefile. DISABLE_PLUGINS=libpatch.so + +# Likewise don't bother with the syscall plugin for softmmu +ifneq ($(filter %-softmmu, $(TARGET)),) +DISABLE_PLUGINS += libsyscall.so +endif + PLUGINS=$(filter-out $(DISABLE_PLUGINS), \ $(patsubst %.c, lib%.so, $(notdir $(wildcard $(PLUGIN_SRC)/*.c))))