mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
b5906c2aa4
The pthread tests dynamically allocate memory for the thread stacks. Therefore while compilation succeeds, they will fail to run on these low memory boards. Static allocation of thread stacks is an option to make those tests work for those boards (confirmed for `tests/pthread`), but it would change the nature of the tests.
12 lines
337 B
Makefile
12 lines
337 B
Makefile
include ../Makefile.tests_common
|
|
|
|
USEMODULE += posix_headers
|
|
USEMODULE += pthread
|
|
|
|
# The test compiles, but these boards have too little RAM for
|
|
# dynamic allocation of thread stacks
|
|
BOARD_BLACKLIST := arduino-nano arduino-duemilanove \
|
|
arduino-uno nucleo-f031k6 stm32f030f4-demo
|
|
|
|
include $(RIOTBASE)/Makefile.include
|