d044b7c33a
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>
18 lines
559 B
Makefile
18 lines
559 B
Makefile
# -*- Mode: makefile -*-
|
|
#
|
|
# HPPA specific tweaks - specifically masking out broken tests
|
|
|
|
# On parisc Linux supports 4K/16K/64K (but currently only 4k works)
|
|
EXTRA_RUNS+=run-test-mmap-4096 # run-test-mmap-16384 run-test-mmap-65536
|
|
|
|
# This triggers failures for hppa-linux about 1% of the time
|
|
# HPPA is the odd target that can't use the sigtramp page;
|
|
# it requires the full vdso with dwarf2 unwind info.
|
|
run-signals: signals
|
|
$(call skip-test, $<, "BROKEN awaiting vdso support")
|
|
|
|
VPATH += $(SRC_PATH)/tests/tcg/hppa
|
|
TESTS += stby
|
|
|
|
stby: CFLAGS += -pthread
|