These tests mainly test the stack whether it compiles and runs fine under normal conditions. They do not test most failure conditions. Origin: Original Change-Id: Iaac73511a0664abd84685112b4e526eab3eb5748 Signed-off-by: Jaakko Hannikainen <jaakko.hannikainen@intel.com> Signed-off-by: Anas Nashif <anas.nashif@intel.com>
12 lines
218 B
Makefile
12 lines
218 B
Makefile
BOARD ?= qemu_x86
|
|
|
|
ifneq ($(BOARD), unit_testing)
|
|
KERNEL_TYPE ?= nano
|
|
CONF_FILE ?= prj.conf
|
|
|
|
include $(ZEPHYR_BASE)/Makefile.inc
|
|
else
|
|
OBJECTS = src/main.o
|
|
include $(ZEPHYR_BASE)/tests/unit/Makefile.unittest
|
|
endif
|