zephyr/tests/ztest/test/base/Makefile
Jaakko Hannikainen 349a6c5c28 ztest: Add simple integration and unit tests
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>
2016-09-30 21:17:41 +00:00

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