2016-08-12 16:52:48 +02:00
|
|
|
# name of your application
|
|
|
|
APPLICATION = od
|
2017-01-20 15:46:53 +01:00
|
|
|
include ../Makefile.tests_common
|
2016-08-12 16:52:48 +02:00
|
|
|
|
|
|
|
USEMODULE += od
|
2017-08-24 18:25:58 +02:00
|
|
|
# USEMODULE += od_string
|
2016-08-12 16:52:48 +02:00
|
|
|
|
|
|
|
# Comment this out to disable code in RIOT that does safety checking
|
|
|
|
# which is not needed in a production environment but helps in the
|
|
|
|
# development process:
|
|
|
|
CFLAGS += -DDEVELHELP
|
|
|
|
|
|
|
|
include $(RIOTBASE)/Makefile.include
|
|
|
|
|
|
|
|
test:
|
2017-08-24 18:25:58 +02:00
|
|
|
ifeq (,$(filter od_string,$(USEMODULE)))
|
2017-10-19 19:38:41 +02:00
|
|
|
tests/01-run.py
|
2017-08-24 18:25:58 +02:00
|
|
|
else
|
|
|
|
tests/02-run.py
|
|
|
|
endif
|