tests/tcg: limit the scope of the plugin tests
Running every plugin with every test is getting excessive as well as not really improving coverage that much. Restrict the plugin tests to just the MULTIARCH_TESTS which are shared between most architecture for both system and user-mode. For those that aren't we need to squash MULTIARCH_TESTS so we don't add them when they are not part of the TESTS global. Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Acked-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20230424092249.58552-14-alex.bennee@linaro.org>
This commit is contained in:
parent
6ee3624236
commit
d044b7c33a
@ -152,13 +152,17 @@ PLUGINS=$(patsubst %.c, lib%.so, $(notdir $(wildcard $(PLUGIN_SRC)/*.c)))
|
|||||||
|
|
||||||
# We need to ensure expand the run-plugin-TEST-with-PLUGIN
|
# We need to ensure expand the run-plugin-TEST-with-PLUGIN
|
||||||
# pre-requistes manually here as we can't use stems to handle it. We
|
# pre-requistes manually here as we can't use stems to handle it. We
|
||||||
# also add some special helpers the run-plugin- rules can use bellow.
|
# only expand MULTIARCH_TESTS which are common on most of our targets
|
||||||
|
# to avoid an exponential explosion as new tests are added. We also
|
||||||
|
# add some special helpers the run-plugin- rules can use bellow.
|
||||||
|
|
||||||
|
ifneq ($(MULTIARCH_TESTS),)
|
||||||
$(foreach p,$(PLUGINS), \
|
$(foreach p,$(PLUGINS), \
|
||||||
$(foreach t,$(TESTS),\
|
$(foreach t,$(MULTIARCH_TESTS),\
|
||||||
$(eval run-plugin-$(t)-with-$(p): $t $p) \
|
$(eval run-plugin-$(t)-with-$(p): $t $p) \
|
||||||
$(eval RUN_TESTS+=run-plugin-$(t)-with-$(p))))
|
$(eval RUN_TESTS+=run-plugin-$(t)-with-$(p))))
|
||||||
endif
|
endif # MULTIARCH_TESTS
|
||||||
|
endif # CONFIG_PLUGIN
|
||||||
|
|
||||||
strip-plugin = $(wordlist 1, 1, $(subst -with-, ,$1))
|
strip-plugin = $(wordlist 1, 1, $(subst -with-, ,$1))
|
||||||
extract-plugin = $(wordlist 2, 2, $(subst -with-, ,$1))
|
extract-plugin = $(wordlist 2, 2, $(subst -with-, ,$1))
|
||||||
|
@ -81,6 +81,4 @@ pauth-3:
|
|||||||
$(call skip-test, "BUILD of $@", "missing compiler support")
|
$(call skip-test, "BUILD of $@", "missing compiler support")
|
||||||
run-pauth-3:
|
run-pauth-3:
|
||||||
$(call skip-test, "RUN of pauth-3", "not built")
|
$(call skip-test, "RUN of pauth-3", "not built")
|
||||||
run-plugin-pauth-3-with-%:
|
|
||||||
$(call skip-test, "RUN of pauth-3 ($*)", "not built")
|
|
||||||
endif
|
endif
|
||||||
|
@ -32,7 +32,6 @@ ifneq ($(CROSS_CC_HAS_ARMV8_3),)
|
|||||||
AARCH64_TESTS += pauth-1 pauth-2 pauth-4 pauth-5
|
AARCH64_TESTS += pauth-1 pauth-2 pauth-4 pauth-5
|
||||||
pauth-%: CFLAGS += -march=armv8.3-a
|
pauth-%: CFLAGS += -march=armv8.3-a
|
||||||
run-pauth-%: QEMU_OPTS += -cpu max
|
run-pauth-%: QEMU_OPTS += -cpu max
|
||||||
run-plugin-pauth-%: QEMU_OPTS += -cpu max
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# BTI Tests
|
# BTI Tests
|
||||||
|
@ -23,4 +23,6 @@ LDFLAGS+=-nostdlib -N -static
|
|||||||
test-armv6m-undef: EXTRA_CFLAGS+=-mcpu=cortex-m0 -mfloat-abi=soft
|
test-armv6m-undef: EXTRA_CFLAGS+=-mcpu=cortex-m0 -mfloat-abi=soft
|
||||||
|
|
||||||
run-test-armv6m-undef: QEMU_OPTS+=-semihosting -M microbit -kernel
|
run-test-armv6m-undef: QEMU_OPTS+=-semihosting -M microbit -kernel
|
||||||
run-plugin-test-armv6m-undef-%: QEMU_OPTS+=-semihosting -M microbit -kernel
|
|
||||||
|
# We don't currently support the multiarch system tests
|
||||||
|
undefine MULTIARCH_TESTS
|
||||||
|
@ -46,11 +46,6 @@ semihosting-arm: semihosting.c
|
|||||||
run-semihosting-arm: semihosting-arm
|
run-semihosting-arm: semihosting-arm
|
||||||
$(call run-test,$<,$(QEMU) $< 2> $<.err)
|
$(call run-test,$<,$(QEMU) $< 2> $<.err)
|
||||||
|
|
||||||
run-plugin-semihosting-arm-with-%:
|
|
||||||
$(call run-test, $@, $(QEMU) $(QEMU_OPTS) \
|
|
||||||
-plugin $(PLUGIN_LIB)/$(call extract-plugin,$@) \
|
|
||||||
$(call strip-plugin,$<) 2> $<.err)
|
|
||||||
|
|
||||||
ARM_TESTS += semiconsole-arm
|
ARM_TESTS += semiconsole-arm
|
||||||
|
|
||||||
semiconsole: CFLAGS += -mthumb
|
semiconsole: CFLAGS += -mthumb
|
||||||
@ -62,9 +57,6 @@ semiconsole-arm: semihosting.c
|
|||||||
run-semiconsole-arm: semiconsole-arm
|
run-semiconsole-arm: semiconsole-arm
|
||||||
$(call skip-test, $<, "MANUAL ONLY")
|
$(call skip-test, $<, "MANUAL ONLY")
|
||||||
|
|
||||||
run-plugin-semiconsole-arm-with-%:
|
|
||||||
$(call skip-test, $<, "MANUAL ONLY")
|
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ARM_TESTS += commpage
|
ARM_TESTS += commpage
|
||||||
|
@ -57,3 +57,6 @@ SIMG:=cris-axis-linux-gnu-run
|
|||||||
# e.g.: make -f ../../tests/tcg/Makefile run-check_orm-on-sim
|
# e.g.: make -f ../../tests/tcg/Makefile run-check_orm-on-sim
|
||||||
run-%-on-sim:
|
run-%-on-sim:
|
||||||
$(call run-test, $<, $(SIMG) $<)
|
$(call run-test, $<, $(SIMG) $<)
|
||||||
|
|
||||||
|
# We don't currently support the multiarch tests
|
||||||
|
undefine MULTIARCH_TESTS
|
||||||
|
@ -10,8 +10,6 @@ EXTRA_RUNS+=run-test-mmap-4096 # run-test-mmap-16384 run-test-mmap-65536
|
|||||||
# it requires the full vdso with dwarf2 unwind info.
|
# it requires the full vdso with dwarf2 unwind info.
|
||||||
run-signals: signals
|
run-signals: signals
|
||||||
$(call skip-test, $<, "BROKEN awaiting vdso support")
|
$(call skip-test, $<, "BROKEN awaiting vdso support")
|
||||||
run-plugin-signals-with-%:
|
|
||||||
$(call skip-test, $<, "BROKEN awaiting vdso support")
|
|
||||||
|
|
||||||
VPATH += $(SRC_PATH)/tests/tcg/hppa
|
VPATH += $(SRC_PATH)/tests/tcg/hppa
|
||||||
TESTS += stby
|
TESTS += stby
|
||||||
|
@ -18,19 +18,15 @@ X86_64_TESTS:=$(filter test-i386-adcox test-i386-bmi2 $(SKIP_I386_TESTS), $(ALL_
|
|||||||
|
|
||||||
test-i386-sse-exceptions: CFLAGS += -msse4.1 -mfpmath=sse
|
test-i386-sse-exceptions: CFLAGS += -msse4.1 -mfpmath=sse
|
||||||
run-test-i386-sse-exceptions: QEMU_OPTS += -cpu max
|
run-test-i386-sse-exceptions: QEMU_OPTS += -cpu max
|
||||||
run-plugin-test-i386-sse-exceptions-%: QEMU_OPTS += -cpu max
|
|
||||||
|
|
||||||
test-i386-pcmpistri: CFLAGS += -msse4.2
|
test-i386-pcmpistri: CFLAGS += -msse4.2
|
||||||
run-test-i386-pcmpistri: QEMU_OPTS += -cpu max
|
run-test-i386-pcmpistri: QEMU_OPTS += -cpu max
|
||||||
run-plugin-test-i386-pcmpistri-%: QEMU_OPTS += -cpu max
|
|
||||||
|
|
||||||
test-i386-bmi2: CFLAGS=-O2
|
test-i386-bmi2: CFLAGS=-O2
|
||||||
run-test-i386-bmi2: QEMU_OPTS += -cpu max
|
run-test-i386-bmi2: QEMU_OPTS += -cpu max
|
||||||
run-plugin-test-i386-bmi2-%: QEMU_OPTS += -cpu max
|
|
||||||
|
|
||||||
test-i386-adcox: CFLAGS=-O2
|
test-i386-adcox: CFLAGS=-O2
|
||||||
run-test-i386-adcox: QEMU_OPTS += -cpu max
|
run-test-i386-adcox: QEMU_OPTS += -cpu max
|
||||||
run-plugin-test-i386-adcox-%: QEMU_OPTS += -cpu max
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# hello-i386 is a barebones app
|
# hello-i386 is a barebones app
|
||||||
@ -52,8 +48,6 @@ test-i386:
|
|||||||
$(call skip-test, "BUILD of $@", "missing -no-pie compiler support")
|
$(call skip-test, "BUILD of $@", "missing -no-pie compiler support")
|
||||||
run-test-i386:
|
run-test-i386:
|
||||||
$(call skip-test, "RUN of test-i386", "not built")
|
$(call skip-test, "RUN of test-i386", "not built")
|
||||||
run-plugin-test-i386-with-%:
|
|
||||||
$(call skip-test, "RUN of test-i386 ($*)", "not built")
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(SPEED), slow)
|
ifeq ($(SPEED), slow)
|
||||||
@ -87,7 +81,6 @@ sha512-sse: sha512.c
|
|||||||
$(CC) $(CFLAGS) $(EXTRA_CFLAGS) $< -o $@ $(LDFLAGS)
|
$(CC) $(CFLAGS) $(EXTRA_CFLAGS) $< -o $@ $(LDFLAGS)
|
||||||
|
|
||||||
run-sha512-sse: QEMU_OPTS+=-cpu max
|
run-sha512-sse: QEMU_OPTS+=-cpu max
|
||||||
run-plugin-sha512-sse-with-%: QEMU_OPTS+=-cpu max
|
|
||||||
|
|
||||||
TESTS+=sha512-sse
|
TESTS+=sha512-sse
|
||||||
|
|
||||||
@ -103,15 +96,12 @@ test-avx.h: test-avx.py x86.csv
|
|||||||
|
|
||||||
test-3dnow: CFLAGS += -masm=intel -O -I.
|
test-3dnow: CFLAGS += -masm=intel -O -I.
|
||||||
run-test-3dnow: QEMU_OPTS += -cpu max
|
run-test-3dnow: QEMU_OPTS += -cpu max
|
||||||
run-plugin-test-3dnow: QEMU_OPTS += -cpu max
|
|
||||||
test-3dnow: test-3dnow.h
|
test-3dnow: test-3dnow.h
|
||||||
|
|
||||||
test-mmx: CFLAGS += -masm=intel -O -I.
|
test-mmx: CFLAGS += -masm=intel -O -I.
|
||||||
run-test-mmx: QEMU_OPTS += -cpu max
|
run-test-mmx: QEMU_OPTS += -cpu max
|
||||||
run-plugin-test-mmx: QEMU_OPTS += -cpu max
|
|
||||||
test-mmx: test-mmx.h
|
test-mmx: test-mmx.h
|
||||||
|
|
||||||
test-avx: CFLAGS += -mavx -masm=intel -O -I.
|
test-avx: CFLAGS += -mavx -masm=intel -O -I.
|
||||||
run-test-avx: QEMU_OPTS += -cpu max
|
run-test-avx: QEMU_OPTS += -cpu max
|
||||||
run-plugin-test-avx: QEMU_OPTS += -cpu max
|
|
||||||
test-avx: test-avx.h
|
test-avx: test-avx.h
|
||||||
|
@ -24,14 +24,12 @@ PPC64_TESTS += byte_reverse sha512-vector
|
|||||||
endif
|
endif
|
||||||
byte_reverse: CFLAGS += -mcpu=power10
|
byte_reverse: CFLAGS += -mcpu=power10
|
||||||
run-byte_reverse: QEMU_OPTS+=-cpu POWER10
|
run-byte_reverse: QEMU_OPTS+=-cpu POWER10
|
||||||
run-plugin-byte_reverse-with-%: QEMU_OPTS+=-cpu POWER10
|
|
||||||
|
|
||||||
sha512-vector: CFLAGS +=-mcpu=power10 -O3
|
sha512-vector: CFLAGS +=-mcpu=power10 -O3
|
||||||
sha512-vector: sha512.c
|
sha512-vector: sha512.c
|
||||||
$(CC) $(CFLAGS) $(EXTRA_CFLAGS) $< -o $@ $(LDFLAGS)
|
$(CC) $(CFLAGS) $(EXTRA_CFLAGS) $< -o $@ $(LDFLAGS)
|
||||||
|
|
||||||
run-sha512-vector: QEMU_OPTS+=-cpu POWER10
|
run-sha512-vector: QEMU_OPTS+=-cpu POWER10
|
||||||
run-plugin-sha512-vector-with-%: QEMU_OPTS+=-cpu POWER10
|
|
||||||
|
|
||||||
PPC64_TESTS += signal_save_restore_xer
|
PPC64_TESTS += signal_save_restore_xer
|
||||||
PPC64_TESTS += xxspltw
|
PPC64_TESTS += xxspltw
|
||||||
|
@ -19,3 +19,6 @@ QEMU_OPTS += -M virt -display none -semihosting -device loader,file=
|
|||||||
EXTRA_RUNS += run-issue1060
|
EXTRA_RUNS += run-issue1060
|
||||||
run-issue1060: issue1060
|
run-issue1060: issue1060
|
||||||
$(call run-test, $<, $(QEMU) $(QEMU_OPTS)$<)
|
$(call run-test, $<, $(QEMU) $(QEMU_OPTS)$<)
|
||||||
|
|
||||||
|
# We don't currently support the multiarch system tests
|
||||||
|
undefine MULTIARCH_TESTS
|
||||||
|
@ -9,4 +9,3 @@ TESTS += noexec
|
|||||||
TESTS += test-noc
|
TESTS += test-noc
|
||||||
test-noc: LDFLAGS = -nostdlib -static
|
test-noc: LDFLAGS = -nostdlib -static
|
||||||
run-test-noc: QEMU_OPTS += -cpu rv64,c=false
|
run-test-noc: QEMU_OPTS += -cpu rv64,c=false
|
||||||
run-plugin-test-noc-%: QEMU_OPTS += -cpu rv64,c=false
|
|
||||||
|
@ -23,3 +23,6 @@ include $(S390X_SRC)/pgm-specification.mak
|
|||||||
$(PGM_SPECIFICATION_TESTS): pgm-specification-softmmu.o
|
$(PGM_SPECIFICATION_TESTS): pgm-specification-softmmu.o
|
||||||
$(PGM_SPECIFICATION_TESTS): LDFLAGS+=pgm-specification-softmmu.o
|
$(PGM_SPECIFICATION_TESTS): LDFLAGS+=pgm-specification-softmmu.o
|
||||||
TESTS += $(PGM_SPECIFICATION_TESTS)
|
TESTS += $(PGM_SPECIFICATION_TESTS)
|
||||||
|
|
||||||
|
# We don't currently support the multiarch system tests
|
||||||
|
undefine MULTIARCH_TESTS
|
||||||
|
@ -29,3 +29,6 @@ QEMU_OPTS += -M tricore_testboard -cpu tc27x -nographic -kernel
|
|||||||
|
|
||||||
%.tst: %.o
|
%.tst: %.o
|
||||||
$(LD) $(LDFLAGS) $< -o $@
|
$(LD) $(LDFLAGS) $< -o $@
|
||||||
|
|
||||||
|
# We don't currently support the multiarch system tests
|
||||||
|
undefine MULTIARCH_TESTS
|
||||||
|
@ -41,3 +41,6 @@ $(XTENSA_USABLE_TESTS): linker.ld macros.inc $(CRT) Makefile.softmmu-target
|
|||||||
$(CC) $(XTENSA_INC) $(ASFLAGS) $(EXTRA_CFLAGS) $< -o $@ $(LDFLAGS) $(NOSTDFLAGS) $(CRT)
|
$(CC) $(XTENSA_INC) $(ASFLAGS) $(EXTRA_CFLAGS) $< -o $@ $(LDFLAGS) $(NOSTDFLAGS) $(CRT)
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
# We don't currently support the multiarch system tests
|
||||||
|
undefine MULTIARCH_TESTS
|
||||||
|
Loading…
Reference in New Issue
Block a user