mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2025-01-09 15:24:32 +08:00
beeac538c3
Add a test of sigreturning to an unaligned address (low two bits set). This should have no effect because the hardware will mask those bits. However it previously falsely triggered a warning when CONFIG_PPC_RFI_SRR_DEBUG=y. Signed-off-by: Michael Ellerman <mpe@ellerman.id.au> Link: https://lore.kernel.org/r/20211221135101.2085547-3-mpe@ellerman.id.au
16 lines
414 B
Makefile
16 lines
414 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
TEST_GEN_PROGS := signal signal_tm sigfuz sigreturn_vdso sig_sc_double_restart
|
|
TEST_GEN_PROGS += sigreturn_kernel
|
|
TEST_GEN_PROGS += sigreturn_unaligned
|
|
|
|
CFLAGS += -maltivec
|
|
$(OUTPUT)/signal_tm: CFLAGS += -mhtm
|
|
$(OUTPUT)/sigfuz: CFLAGS += -pthread -m64
|
|
|
|
TEST_FILES := settings
|
|
|
|
top_srcdir = ../../../../..
|
|
include ../../lib.mk
|
|
|
|
$(TEST_GEN_PROGS): ../harness.c ../utils.c signal.S
|