mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
26 lines
727 B
Makefile
26 lines
727 B
Makefile
include ../Makefile.tests_common
|
|
|
|
USEMODULE += embunit
|
|
USEMODULE += random
|
|
USEPKG += c25519
|
|
|
|
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-nano arduino-uno
|
|
|
|
TEST_ON_CI_WHITELIST += all
|
|
|
|
include $(RIOTBASE)/Makefile.include
|
|
|
|
# c25519 takes up to 1.5K in stack, almost independent of the platform
|
|
ifneq (,$(filter cortex-%,$(CPU_ARCH)))
|
|
CFLAGS += -DTHREAD_STACKSIZE_MAIN=\(THREAD_STACKSIZE_DEFAULT+THREAD_EXTRA_STACKSIZE_PRINTF\)
|
|
else
|
|
ifneq (,$(filter atmega_common,$(USEMODULE)))
|
|
CFLAGS += -DTHREAD_STACKSIZE_MAIN=\(5*THREAD_STACKSIZE_DEFAULT+THREAD_EXTRA_STACKSIZE_PRINTF\)
|
|
else
|
|
CFLAGS += -DTHREAD_STACKSIZE_MAIN=\(3*THREAD_STACKSIZE_DEFAULT+THREAD_EXTRA_STACKSIZE_PRINTF\)
|
|
endif
|
|
endif
|
|
|
|
test:
|
|
tests/01-run.py
|