2012-01-12 17: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-12 17:20:46 -08:00
|
|
|
|
|
|
|
|
ifeq ($(ARCH),x86)
|
2016-11-29 19:55:47 +08:00
|
|
|
TEST_GEN_PROGS := breakpoint_test
|
2012-01-12 17:20:46 -08:00
|
|
|
endif
|
2017-03-22 20:04:58 +02:00
|
|
|
ifneq (,$(filter $(ARCH),aarch64 arm64))
|
2016-11-29 19:55:47 +08:00
|
|
|
TEST_GEN_PROGS := breakpoint_test_arm64
|
2016-11-14 19:32:46 +05:30
|
|
|
endif
|
2012-01-12 17:20:46 -08:00
|
|
|
|
2016-11-29 19:55:47 +08:00
|
|
|
TEST_GEN_PROGS += step_after_suspend_test
|
2015-03-11 15:05:59 +11:00
|
|
|
|
|
|
|
|
include ../lib.mk
|
2012-03-28 14:42:54 -07:00
|
|
|
|