e7f8a3aae2
Verify that s390x-specific uc_mcontext.psw.addr is reported correctly and that signal handling interacts properly with debugging. Signed-off-by: Ilya Leoshkevich <iii@linux.ibm.com> Acked-by: Alex Bennée <alex.bennee@linaro.org> Acked-by: David Hildenbrand <david@redhat.com> Message-Id: <20210804225146.154513-1-iii@linux.ibm.com> Signed-off-by: Cornelia Huck <cohuck@redhat.com> Signed-off-by: Thomas Huth <thuth@redhat.com>
27 lines
606 B
Makefile
27 lines
606 B
Makefile
S390X_SRC=$(SRC_PATH)/tests/tcg/s390x
|
|
VPATH+=$(S390X_SRC)
|
|
CFLAGS+=-march=zEC12 -m64
|
|
TESTS+=hello-s390x
|
|
TESTS+=csst
|
|
TESTS+=ipm
|
|
TESTS+=exrl-trt
|
|
TESTS+=exrl-trtr
|
|
TESTS+=pack
|
|
TESTS+=mvo
|
|
TESTS+=mvc
|
|
TESTS+=trap
|
|
TESTS+=signals-s390x
|
|
|
|
ifneq ($(HAVE_GDB_BIN),)
|
|
GDB_SCRIPT=$(SRC_PATH)/tests/guest-debug/run-test.py
|
|
|
|
run-gdbstub-signals-s390x: signals-s390x
|
|
$(call run-test, $@, $(GDB_SCRIPT) \
|
|
--gdb $(HAVE_GDB_BIN) \
|
|
--qemu $(QEMU) --qargs "$(QEMU_OPTS)" \
|
|
--bin $< --test $(S390X_SRC)/gdbstub/test-signals-s390x.py, \
|
|
"mixing signals and debugging on s390x")
|
|
|
|
EXTRA_RUNS += run-gdbstub-signals-s390x
|
|
endif
|