9f54dc1ce6
The parallel version of STBY did not take host endianness into account, and also computed the incorrect address for STBY_E. Bswap twice to handle the merge and store. Compute mask inside the function rather than as a parameter. Force align the address, rather than subtracting one. Generalize the function to system mode by using probe_access(). Cc: qemu-stable@nongnu.org Tested-by: Helge Deller <deller@gmx.de> Reported-by: Helge Deller <deller@gmx.de> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
20 lines
641 B
Makefile
20 lines
641 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")
|
|
run-plugin-signals-with-%:
|
|
$(call skip-test, $<, "BROKEN awaiting vdso support")
|
|
|
|
VPATH += $(SRC_PATH)/tests/tcg/hppa
|
|
TESTS += stby
|
|
|
|
stby: CFLAGS += -pthread
|