2014-05-05 21:54:10 +02:00
|
|
|
APPLICATION = unittests
|
2014-04-07 15:15:25 +02:00
|
|
|
include ../Makefile.tests_common
|
|
|
|
|
2015-03-19 12:04:49 +01:00
|
|
|
BOARD_INSUFFICIENT_RAM := chronos msb-430 msb-430h redbee-econotag spark-core \
|
|
|
|
stm32f0discovery telosb wsn430-v1_3b wsn430-v1_4 z1 \
|
|
|
|
nucleo-f334
|
2014-07-14 21:40:04 +02:00
|
|
|
|
2014-04-07 15:15:25 +02:00
|
|
|
USEMODULE += embunit
|
|
|
|
|
2014-05-14 11:13:53 +02:00
|
|
|
ifeq (, $(filter tests-%, $(MAKECMDGOALS)))
|
2014-09-08 11:56:01 +02:00
|
|
|
UNIT_TESTS := $(foreach d,$(wildcard tests-*/Makefile),$(shell dirname $(d)))
|
2014-05-14 11:13:53 +02:00
|
|
|
else
|
|
|
|
UNIT_TESTS := $(filter tests-%, $(MAKECMDGOALS))
|
|
|
|
endif
|
2014-04-07 15:15:25 +02:00
|
|
|
|
2014-08-21 20:45:36 +02:00
|
|
|
DISABLE_MODULE += auto_init
|
|
|
|
|
2014-05-18 16:17:02 +02:00
|
|
|
# Pull in `Makefile.include`s from the test suites:
|
|
|
|
-include $(UNIT_TESTS:%=$(RIOTBASE)/tests/unittests/%/Makefile.include)
|
|
|
|
|
2014-08-08 13:48:14 +02:00
|
|
|
ifneq (,$(filter netdev_dummy,$(USEMODULE)))
|
|
|
|
USEMODULE += netdev_base
|
|
|
|
DIRS += netdev_dummy
|
|
|
|
INCLUDES += -I$(RIOTBASE)/tests/unittests/netdev_dummy/include
|
|
|
|
endif
|
|
|
|
|
2014-06-18 11:21:05 +02:00
|
|
|
DIRS += $(UNIT_TESTS)
|
|
|
|
BASELIBS += $(UNIT_TESTS:%=$(BINDIR)%.a)
|
2014-05-14 11:13:53 +02:00
|
|
|
|
2015-03-20 19:57:08 +01:00
|
|
|
INCLUDES += -I$(RIOTBASE)/tests/unittests/common
|
2014-05-14 11:13:53 +02:00
|
|
|
|
2015-03-20 19:57:08 +01:00
|
|
|
include $(RIOTBASE)/Makefile.include
|
2014-08-08 19:21:03 +02:00
|
|
|
|
2014-08-27 14:04:22 +02:00
|
|
|
.PHONY: FORCE $(UNIT_TESTS)
|
|
|
|
|
|
|
|
FORCE:
|
|
|
|
touch $(CURDIR)/main.c
|
|
|
|
|
|
|
|
all: FORCE
|
|
|
|
|
|
|
|
$(UNIT_TESTS): FORCE all
|
2014-05-14 11:13:53 +02:00
|
|
|
|
2014-05-14 12:21:20 +02:00
|
|
|
charCOMMA := ,
|
|
|
|
|
|
|
|
ifeq (, $(UNIT_TESTS))
|
|
|
|
CFLAGS += -DNO_TEST_SUITES
|
|
|
|
$(warning There was no test suite specified!)
|
|
|
|
else
|
2014-06-18 11:21:05 +02:00
|
|
|
CFLAGS += -DTEST_SUITES='$(subst $() $(),$(charCOMMA),$(UNIT_TESTS:tests-%=%))'
|
2014-05-14 12:21:20 +02:00
|
|
|
endif
|
2014-05-29 04:40:43 +02:00
|
|
|
|
|
|
|
test: SHELL=bash
|
|
|
|
test:
|
|
|
|
@exec 5>&1 && \
|
|
|
|
LOG=$$("$(MAKE)" -s term | tee >(cat - >&5)) && \
|
|
|
|
grep 'OK ([1-9][0-9]* tests)' <<< $${LOG} > /dev/null
|