Back to home page

OSCL-LXR

 
 

    


0001 # SPDX-License-Identifier: GPL-2.0
0002 # Taken from perf makefile
0003 uname_M := $(shell uname -m 2>/dev/null || echo not)
0004 ARCH ?= $(shell echo $(uname_M) | sed -e s/i.86/x86/ -e s/x86_64/x86/)
0005 
0006 TEST_GEN_PROGS := step_after_suspend_test
0007 
0008 ifeq ($(ARCH),x86)
0009 TEST_GEN_PROGS += breakpoint_test
0010 endif
0011 ifneq (,$(filter $(ARCH),aarch64 arm64))
0012 TEST_GEN_PROGS += breakpoint_test_arm64
0013 endif
0014 
0015 include ../lib.mk
0016