aboutsummaryrefslogtreecommitdiffstats
path: root/tools/testing/selftests/powerpc/math/Makefile
diff options
context:
space:
mode:
authorCyril Bur <cyrilbur@gmail.com>2016-02-29 17:53:44 +1100
committerMichael Ellerman <mpe@ellerman.id.au>2016-03-02 23:34:47 +1100
commite5ab8be68e4421d7f8d4e69e2a8ddb3d69508d2a (patch)
tree5a938174a6c5062aded2cb0015563b63f9c2f532 /tools/testing/selftests/powerpc/math/Makefile
parentselftests/powerpc: Test the preservation of FPU and VMX regs across syscall (diff)
downloadlinux-dev-e5ab8be68e4421d7f8d4e69e2a8ddb3d69508d2a.tar.xz
linux-dev-e5ab8be68e4421d7f8d4e69e2a8ddb3d69508d2a.zip
selftests/powerpc: Test preservation of FPU and VMX regs across preemption
Loop in assembly checking the registers with many threads. Signed-off-by: Cyril Bur <cyrilbur@gmail.com> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Diffstat (limited to 'tools/testing/selftests/powerpc/math/Makefile')
-rw-r--r--tools/testing/selftests/powerpc/math/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/testing/selftests/powerpc/math/Makefile b/tools/testing/selftests/powerpc/math/Makefile
index 418bef192eab..b6f415805701 100644
--- a/tools/testing/selftests/powerpc/math/Makefile
+++ b/tools/testing/selftests/powerpc/math/Makefile
@@ -1,4 +1,4 @@
-TEST_PROGS := fpu_syscall vmx_syscall
+TEST_PROGS := fpu_syscall fpu_preempt vmx_syscall vmx_preempt
all: $(TEST_PROGS)
@@ -6,7 +6,10 @@ $(TEST_PROGS): ../harness.c
$(TEST_PROGS): CFLAGS += -O2 -g -pthread -m64 -maltivec
fpu_syscall: fpu_asm.S
+fpu_preempt: fpu_asm.S
+
vmx_syscall: vmx_asm.S
+vmx_preempt: vmx_asm.S
include ../../lib.mk