mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-16 13:52:44 +01:00
ce58a32ba9
HACK, the test currently fails in CI for `native` due to `utf-8` handling.
21 lines
567 B
Makefile
21 lines
567 B
Makefile
include ../Makefile.tests_common
|
|
|
|
USEPKG += lua
|
|
|
|
# This application uses getchar and thus expects input from stdio
|
|
USEMODULE += stdin
|
|
|
|
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
|
|
|
|
TEST_ON_CI_WHITELIST += all
|
|
# HACK Blacklist native as `murdock` fails on utf-8 characters for native tests
|
|
TEST_ON_CI_BLACKLIST += native
|
|
|
|
include $(RIOTBASE)/Makefile.include
|