73594998f7
We do not want a shell command substitution, but a parameter
substitution (with assignment). Replace $() -> ${}, otherwise
the expanded command return an empty string and the $cross_cc
variable is not set.
Fixes: 634ef789f8
("tests/tcg: add more default compilers to configure.sh")
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
[AJB: disable sh4 linux-test]
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-Id: <20211023164329.328137-1-f4bug@amsat.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20211026102234.3961636-9-alex.bennee@linaro.org>
21 lines
674 B
Makefile
21 lines
674 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")
|