diff options
author | Alex Bennée <alex.bennee@linaro.org> | 2025-07-25 16:45:10 +0100 |
---|---|---|
committer | Alex Bennée <alex.bennee@linaro.org> | 2025-07-26 23:04:35 +0100 |
commit | 78029e9283f69140d377f589b76e369971dbe0e3 (patch) | |
tree | df5ec3915592056539ec151864e6eb35b769ee6f | |
parent | ebbc04adbb079066f8d180b8744c1c01c6de23f9 (diff) | |
download | qemu-78029e9283f69140d377f589b76e369971dbe0e3.zip qemu-78029e9283f69140d377f589b76e369971dbe0e3.tar.gz qemu-78029e9283f69140d377f589b76e369971dbe0e3.tar.bz2 |
tests/tcg: skip libsyscall.so on softmmu tests
It isn't testing anything and just expanding the runtime of testing.
Reviewed-by: Manos Pitsidianakis <manos.pitsidianakis@linaro.org>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-ID: <20250725154517.3523095-8-alex.bennee@linaro.org>
-rw-r--r-- | tests/tcg/Makefile.target | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/tcg/Makefile.target b/tests/tcg/Makefile.target index af68f11..3d96182 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)))) |