diff options
author | Jon Medhurst <tixy@yxit.co.uk> | 2011-08-28 16:02:38 +0100 |
---|---|---|
committer | Jon Medhurst <tixy@yxit.co.uk> | 2011-09-20 18:17:43 +0000 |
commit | 9eed1797720ae633cf17b03dd804d8744f1d3b5c (patch) | |
tree | c57a2a32f8129b602bda54f58afe9c723cf661c2 /arch/arm/kernel/Makefile | |
parent | 4189bc71ff2cd3c1920b69a01f6796caf3f1edb3 (diff) |
ARM: kprobes: Add basic API tests
These test that the different kinds of probes can be successfully placed
into ARM and Thumb code and that the handlers are called correctly when
this code is executed.
Signed-off-by: Jon Medhurst <tixy@yxit.co.uk>
Acked-by: Nicolas Pitre <nicolas.pitre@linaro.org>
Diffstat (limited to 'arch/arm/kernel/Makefile')
-rw-r--r-- | arch/arm/kernel/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/kernel/Makefile b/arch/arm/kernel/Makefile index f7887dc53c1f..c7cbd965af94 100644 --- a/arch/arm/kernel/Makefile +++ b/arch/arm/kernel/Makefile @@ -43,6 +43,8 @@ obj-$(CONFIG_KPROBES) += kprobes-thumb.o else obj-$(CONFIG_KPROBES) += kprobes-arm.o endif +obj-$(CONFIG_ARM_KPROBES_TEST) += test-kprobes.o +test-kprobes-objs := kprobes-test.o obj-$(CONFIG_ATAGS_PROC) += atags.o obj-$(CONFIG_OABI_COMPAT) += sys_oabi-compat.o obj-$(CONFIG_ARM_THUMBEE) += thumbee.o |