zephyr/tests/kernel/mem_safe/Makefile
Anas Nashif aa70533244 tests: remove legacy tests already ported to unified
Legacy APIs are to be deprecated, so getting rid of tests that have been
moved to unified kernel already.

Change-Id: I752e42bc498dfdd0ea29b0b5b7b9da1dac7b1136
Signed-off-by: Anas Nashif <anas.nashif@intel.com>
2017-03-24 21:51:15 +00:00

14 lines
368 B
Makefile

BOARD ?= qemu_x86
CONF_FILE = prj_$(BOARD).conf
# This testcase requires a special linker script, from the testcase itself.
# The only boards that have one are the ones listed below.
valid_board_qemu_x86 = y
valid_board_qemu_cortex_m3 = y
ifneq ($(valid_board_$(BOARD)),y)
$(error not a supported board for this testcase)
endif
include $(ZEPHYR_BASE)/Makefile.test