2012-01-13 09:20:46 +08:00
|
|
|
# Taken from perf makefile
|
|
|
|
uname_M := $(shell uname -m 2>/dev/null || echo not)
|
2015-08-14 21:43:38 +08:00
|
|
|
ARCH ?= $(shell echo $(uname_M) | sed -e s/i.86/x86/ -e s/x86_64/x86/)
|
2012-01-13 09:20:46 +08:00
|
|
|
|
|
|
|
ifeq ($(ARCH),x86)
|
2016-11-29 19:55:47 +08:00
|
|
|
TEST_GEN_PROGS := breakpoint_test
|
2012-01-13 09:20:46 +08:00
|
|
|
endif
|
2017-03-23 02:04:58 +08:00
|
|
|
ifneq (,$(filter $(ARCH),aarch64 arm64))
|
2016-11-29 19:55:47 +08:00
|
|
|
TEST_GEN_PROGS := breakpoint_test_arm64
|
2016-11-14 22:02:46 +08:00
|
|
|
endif
|
2012-01-13 09:20:46 +08:00
|
|
|
|
2016-11-29 19:55:47 +08:00
|
|
|
TEST_GEN_PROGS += step_after_suspend_test
|
2015-03-11 12:05:59 +08:00
|
|
|
|
|
|
|
include ../lib.mk
|
2012-03-29 05:42:54 +08:00
|
|
|
|