2019-05-29 14:56:33 +02:00
|
|
|
include ../Makefile.tests_common
|
|
|
|
|
|
|
|
USEPKG += lua
|
|
|
|
|
2019-06-13 12:48:15 +02:00
|
|
|
# This application uses getchar and thus expects input from stdio
|
|
|
|
USEMODULE += stdin
|
|
|
|
|
2019-05-29 14:56:33 +02:00
|
|
|
BOARD_WHITELIST += native samr21-xpro
|
|
|
|
|
|
|
|
ifneq ($(BOARD),native)
|
|
|
|
# This stack size is large enough to run Lua print() functions of
|
|
|
|
# various lengths. Other functions untested.
|
|
|
|
CFLAGS += -DTHREAD_STACKSIZE_MAIN='(THREAD_STACKSIZE_DEFAULT+2048)'
|
|
|
|
endif
|
|
|
|
|
2019-06-13 11:54:31 +02:00
|
|
|
TEST_ON_CI_WHITELIST += all
|
|
|
|
# HACK Blacklist native as `murdock` fails on utf-8 characters for native tests
|
|
|
|
TEST_ON_CI_BLACKLIST += native
|
|
|
|
|
2019-05-29 14:56:33 +02:00
|
|
|
include $(RIOTBASE)/Makefile.include
|