Splits the test into two clear sub-categories: microkernel and nanokernel. This is done to maintain consistency with other tests that do the same (e.g. test_obj_tracing, test_sema, test_stackprot, test_timer). Change-Id: Iddb1ec8d569a9d953fb8af5ce08e87b51995f821 Signed-off-by: Peter Mitsis <peter.mitsis@windriver.com>
10 lines
266 B
Makefile
10 lines
266 B
Makefile
MDEF_FILE = prj.mdef
|
|
KERNEL_TYPE = micro
|
|
BOARD ?= qemu_x86
|
|
CONF_FILE = prj_$(ARCH).conf
|
|
SOURCE_DIR := $(ZEPHYR_BASE)/tests/kernel/test_fifo/microkernel/src
|
|
# Enable testing for private microkernel FIFOs
|
|
CFLAGS = -DTEST_PRIV_FIFO
|
|
|
|
include ${ZEPHYR_BASE}/Makefile.inc
|