3bdc19af00
Given the other failures it looks like general thread handling on sh4 is sketchy. It fails more often on CI than on my developer machine though. See https://gitlab.com/qemu-project/qemu/-/issues/856 for more details. Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Cc: Yoshinori Sato <ysato@users.sourceforge.jp> Cc: Laurent Vivier <laurent@vivier.eu> Tested-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Message-Id: <20220204204335.1689602-17-alex.bennee@linaro.org>
25 lines
826 B
Makefile
25 lines
826 B
Makefile
# -*- Mode: makefile -*-
|
|
#
|
|
# SuperH specific tweaks
|
|
#
|
|
|
|
# On sh Linux supports 4k, 8k, 16k and 64k pages (but only 4k currently works)
|
|
EXTRA_RUNS+=run-test-mmap-4096 # run-test-mmap-8192 run-test-mmap-16384 run-test-mmap-65536
|
|
|
|
# This triggers failures for sh4-linux about 10% of the time.
|
|
# Random SIGSEGV at unpredictable guest address, cause unknown.
|
|
run-signals: signals
|
|
$(call skip-test, $<, "BROKEN")
|
|
run-plugin-signals-with-%:
|
|
$(call skip-test, $<, "BROKEN")
|
|
|
|
# This test is currently broken: https://gitlab.com/qemu-project/qemu/-/issues/704
|
|
run-linux-test: linux-test
|
|
$(call skip-test, $<, "BROKEN")
|
|
run-plugin-linux-test-with-%:
|
|
$(call skip-test, $<, "BROKEN")
|
|
|
|
# This test is currently unreliable: https://gitlab.com/qemu-project/qemu/-/issues/856
|
|
run-plugin-threadcount-with-%:
|
|
$(call skip-test, $<, "BROKEN")
|