mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2025-01-08 23:04:35 +08:00
f43365ee17
ARM64 hardware expects 64bit aligned address for watchpoint invocation. However, it provides byte selection method to select any number of consecutive byte set within the range of 1-8. This patch adds support to test all such byte selection option for different memory write sizes. Patch also adds a test for handling the case when the cpu does not report an address which exactly matches one of the regions we have been watching (which is a situation permitted by the spec if an instruction accesses both watched and unwatched regions). The test was failing on a MSM8996pro before this patch series and is passing now. Signed-off-by: Pavel Labath <labath@google.com> Signed-off-by: Pratyush Anand <panand@redhat.com> Signed-off-by: Will Deacon <will.deacon@arm.com>
20 lines
428 B
Makefile
20 lines
428 B
Makefile
# Taken from perf makefile
|
|
uname_M := $(shell uname -m 2>/dev/null || echo not)
|
|
ARCH ?= $(shell echo $(uname_M) | sed -e s/i.86/x86/ -e s/x86_64/x86/)
|
|
|
|
ifeq ($(ARCH),x86)
|
|
TEST_PROGS := breakpoint_test
|
|
endif
|
|
ifeq ($(ARCH),aarch64)
|
|
TEST_PROGS := breakpoint_test_arm64
|
|
endif
|
|
|
|
TEST_PROGS += step_after_suspend_test
|
|
|
|
all: $(TEST_PROGS)
|
|
|
|
include ../lib.mk
|
|
|
|
clean:
|
|
rm -fr breakpoint_test breakpoint_test_arm64 step_after_suspend_test
|