mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2026-01-01 01:41:18 +01:00
'pthread' is now compatible with 'avr' so enable them in tests. All the tests ran on 'arduino-mega2560' when supported.
31 lines
565 B
Makefile
31 lines
565 B
Makefile
include ../Makefile.tests_common
|
|
|
|
USEMODULE += pthread
|
|
USEMODULE += xtimer
|
|
USEMODULE += random
|
|
|
|
BOARD_INSUFFICIENT_MEMORY = \
|
|
arduino-duemilanove \
|
|
arduino-leonardo \
|
|
arduino-nano \
|
|
arduino-uno \
|
|
chronos \
|
|
i-nucleo-lrwan1 \
|
|
msb-430 \
|
|
msb-430h \
|
|
nucleo-f030r8 \
|
|
nucleo-f031k6 \
|
|
nucleo-f042k6 \
|
|
nucleo-f303k8 \
|
|
nucleo-f334r8 \
|
|
nucleo-l031k6 \
|
|
nucleo-l053r8 \
|
|
stm32f0discovery \
|
|
stm32l0538-disco \
|
|
#
|
|
|
|
# HACK Blacklist native as `murdock` fails on utf-8 characters for native tests
|
|
TEST_ON_CI_BLACKLIST += native
|
|
|
|
include $(RIOTBASE)/Makefile.include
|