This is a new test case that creates a signal and starts a suspended transaction inside the signal handler. It returns from the signal handler with the CPU at suspended state, but without setting user context MSR Transaction State (TS) field. The kernel signal handler code should be able to handle this discrepancy instead of crashing. This code could be compiled and used to test 32 and 64-bits signal handlers. Signed-off-by: Breno Leitao <leitao@debian.org> Signed-off-by: Gustavo Romero <gromero@linux.vnet.ibm.com> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
27 lines
1.0 KiB
Makefile
27 lines
1.0 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
SIGNAL_CONTEXT_CHK_TESTS := tm-signal-context-chk-gpr tm-signal-context-chk-fpu \
|
|
tm-signal-context-chk-vmx tm-signal-context-chk-vsx
|
|
|
|
TEST_GEN_PROGS := tm-resched-dscr tm-syscall tm-signal-msr-resv tm-signal-stack \
|
|
tm-vmxcopy tm-fork tm-tar tm-tmspr tm-vmx-unavail tm-unavailable tm-trap \
|
|
$(SIGNAL_CONTEXT_CHK_TESTS) tm-sigreturn tm-signal-sigreturn-nt
|
|
|
|
top_srcdir = ../../../../..
|
|
include ../../lib.mk
|
|
|
|
$(TEST_GEN_PROGS): ../harness.c ../utils.c
|
|
|
|
CFLAGS += -mhtm
|
|
|
|
$(OUTPUT)/tm-syscall: tm-syscall-asm.S
|
|
$(OUTPUT)/tm-syscall: CFLAGS += -I../../../../../usr/include
|
|
$(OUTPUT)/tm-tmspr: CFLAGS += -pthread
|
|
$(OUTPUT)/tm-vmx-unavail: CFLAGS += -pthread -m64
|
|
$(OUTPUT)/tm-resched-dscr: ../pmu/lib.c
|
|
$(OUTPUT)/tm-unavailable: CFLAGS += -O0 -pthread -m64 -Wno-error=uninitialized -mvsx
|
|
$(OUTPUT)/tm-trap: CFLAGS += -O0 -pthread -m64
|
|
|
|
SIGNAL_CONTEXT_CHK_TESTS := $(patsubst %,$(OUTPUT)/%,$(SIGNAL_CONTEXT_CHK_TESTS))
|
|
$(SIGNAL_CONTEXT_CHK_TESTS): tm-signal.S
|
|
$(SIGNAL_CONTEXT_CHK_TESTS): CFLAGS += -mhtm -m64 -mvsx
|