mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
Merge pull request #12455 from miri64/tests/cleanup/unittests-blacklist
unittests: remove board blacklist, fix doc for MCU architectures
This commit is contained in:
commit
63be700fa7
@ -1,23 +1,6 @@
|
||||
DEVELHELP ?= 0
|
||||
include ../Makefile.tests_common
|
||||
|
||||
# Issue with integer width
|
||||
# There are present for a long time but hidden by being not compiled
|
||||
BOARD_BLACKLIST += arduino-duemilanove
|
||||
BOARD_BLACKLIST += arduino-leonardo
|
||||
BOARD_BLACKLIST += arduino-mega2560
|
||||
BOARD_BLACKLIST += arduino-nano
|
||||
BOARD_BLACKLIST += arduino-uno
|
||||
BOARD_BLACKLIST += chronos
|
||||
BOARD_BLACKLIST += mega-xplained
|
||||
BOARD_BLACKLIST += msb-430
|
||||
BOARD_BLACKLIST += msb-430h
|
||||
BOARD_BLACKLIST += telosb
|
||||
BOARD_BLACKLIST += waspmote-pro
|
||||
BOARD_BLACKLIST += wsn430-v1_3b
|
||||
BOARD_BLACKLIST += wsn430-v1_4
|
||||
BOARD_BLACKLIST += z1
|
||||
|
||||
BOARD_INSUFFICIENT_MEMORY := airfy-beacon \
|
||||
arduino-duemilanove \
|
||||
arduino-leonardo \
|
||||
|
@ -1 +1,5 @@
|
||||
USEMODULE += gnrc_ipv6
|
||||
|
||||
# Test assumes 32-bit width for `size_t` which is only the case on our 32-bit
|
||||
# platforms
|
||||
FEATURES_REQUIRED += arch_32bit
|
||||
|
@ -1,3 +1,10 @@
|
||||
CFLAGS += -DRTC_NORMALIZE_COMPAT=1
|
||||
|
||||
USEMODULE += periph_rtc_common
|
||||
|
||||
# MSP-430's libc does not provide `mktime()` used by this test
|
||||
FEATURES_BLACKLIST += arch_msp430
|
||||
|
||||
# AVR/ATmega uses `int8_t` for `struct tm` which leads to integer overflows
|
||||
# in these tests
|
||||
FEATURES_BLACKLIST += arch_avr8
|
||||
|
Loading…
Reference in New Issue
Block a user