mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
tests: remove obsolete msp430 blacklists
This commit is contained in:
parent
f08f582f1a
commit
6fe7a47563
@ -111,7 +111,6 @@ int main(void)
|
||||
/* Use 'fmt/print_float' to work on all platforms (atmega)
|
||||
* Stdout should be flushed before to prevent garbled output. */
|
||||
#ifdef MODULE_NEWLIB
|
||||
/* no fflush on msp430 */
|
||||
fflush(stdout);
|
||||
#endif
|
||||
print_float(false_positive_rate, 6);
|
||||
|
@ -1,7 +1,5 @@
|
||||
include ../Makefile.tests_common
|
||||
|
||||
FEATURES_BLACKLIST += arch_msp430
|
||||
|
||||
USEMODULE += shell
|
||||
USEMODULE += shell_commands
|
||||
USEMODULE += ps
|
||||
|
@ -3,9 +3,6 @@ include ../Makefile.tests_common
|
||||
|
||||
DEVICE ?= cc1100 # The MSB-A2 uses the CC1100. New boards use CC1101
|
||||
|
||||
# stdlib.h for msp430 does not provide EXIT_FAILURE and EXIT_SUCCESS
|
||||
BOARD_BLACKLIST += msb-430 msb-430h telosb z1
|
||||
|
||||
# This test will rely on a human interacting with the shell, so we better add
|
||||
# the shell and some commands
|
||||
USEMODULE += shell
|
||||
|
@ -2,5 +2,4 @@ include ../Makefile.tests_common
|
||||
|
||||
USEMODULE += dcf77
|
||||
|
||||
FEATURES_BLACKLIST += arch_msp430
|
||||
include $(RIOTBASE)/Makefile.include
|
||||
|
@ -1,9 +1,6 @@
|
||||
BOARD ?= slstk3401a
|
||||
include ../Makefile.tests_common
|
||||
|
||||
# method `fflush()` is not defined for MSP-430 (#6445 will fix this)
|
||||
BOARD_BLACKLIST := chronos msb-430h msb-430 telosb z1
|
||||
|
||||
FEATURES_OPTIONAL += periph_rtc
|
||||
FEATURES_OPTIONAL += periph_gpio_irq
|
||||
|
||||
|
@ -1,11 +1,5 @@
|
||||
include ../Makefile.tests_common
|
||||
|
||||
BOARD_BLACKLIST := chronos \
|
||||
msb-430 \
|
||||
msb-430h \
|
||||
telosb \
|
||||
z1 \
|
||||
|
||||
USEMODULE += littlefs
|
||||
USEMODULE += embunit
|
||||
|
||||
|
@ -4,7 +4,4 @@ USEPKG += minmea
|
||||
|
||||
USEMODULE += fmt
|
||||
|
||||
# The MSP-430 toolchain lacks mktime and NAN
|
||||
BOARD_BLACKLIST := chronos msb-430 msb-430h telosb z1
|
||||
|
||||
include $(RIOTBASE)/Makefile.include
|
||||
|
@ -3,7 +3,4 @@ include ../Makefile.tests_common
|
||||
USEMODULE += shell
|
||||
USEMODULE += timex
|
||||
|
||||
# The MSP-430 toolchain lacks sscanf:
|
||||
BOARD_BLACKLIST := chronos msb-430 msb-430h telosb z1
|
||||
|
||||
include $(RIOTBASE)/Makefile.include
|
||||
|
@ -2,9 +2,6 @@ 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