Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[smoke test] Remove msp430 from blacklists #13393

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions pkg/libfixmath/Makefile.dep
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,4 @@ ifneq (,$(filter libfixmath-unittests,$(USEMODULE)))
# libfixmath unittests use shift operand incompatible with 8bit
# architecture int type.
FEATURES_BLACKLIST += arch_8bit

# The round function is not provided by the msp430 toolchain
FEATURES_BLACKLIST += arch_msp430
endif
4 changes: 0 additions & 4 deletions pkg/semtech-loramac/Makefile.dep
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,3 @@ USEMODULE += semtech_loramac_mac
USEMODULE += semtech_loramac_mac_region
USEMODULE += semtech_loramac_crypto
USEMODULE += semtech_loramac_arch

# The build fails on MSP430 because the toolchain doesn't provide
# EXIT_SUCCESS/EXIT_FAILURE macros
FEATURES_BLACKLIST += arch_msp430
3 changes: 0 additions & 3 deletions pkg/ubasic/Makefile.dep
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
# avr-libc does not provide `clock `required by ubasic_tests
FEATURES_BLACKLIST += arch_avr8

# msp430-libc does not provide `stdout` variable required by ubasic_tests
FEATURES_BLACKLIST += arch_msp430

# newlib for MIPS does not provide _times_r
FEATURES_BLACKLIST += arch_mips32r2

Expand Down
3 changes: 0 additions & 3 deletions tests/driver_cc110x/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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 wsn430-v1_3b wsn430-v1_4 z1

# This test will rely on a human interacting with the shell, so we better add
# the shell and some commands
USEMODULE += shell
Expand Down
1 change: 0 additions & 1 deletion tests/driver_dcf77/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,4 @@ include ../Makefile.tests_common

USEMODULE += dcf77

FEATURES_BLACKLIST += arch_msp430
include $(RIOTBASE)/Makefile.include
3 changes: 0 additions & 3 deletions tests/emb6/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@
BOARD ?= samr21-xpro
include ../Makefile.tests_common

# MSP-430 doesn't support C11's atomic functionality yet
FEATURES_BLACKLIST += arch_msp430

USEPKG += emb6

USEMODULE += emb6_router
Expand Down
3 changes: 0 additions & 3 deletions tests/periph_pm/Makefile
Original file line number Diff line number Diff line change
@@ -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 wsn430-v1_3b wsn430-v1_4 z1

FEATURES_OPTIONAL += periph_rtc
FEATURES_OPTIONAL += periph_gpio_irq

Expand Down
3 changes: 0 additions & 3 deletions tests/pkg_minmea/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,4 @@ USEPKG += minmea

USEMODULE += fmt

# The MSP-430 toolchain lacks mktime and NAN
BOARD_BLACKLIST := chronos msb-430 msb-430h telosb wsn430-v1_3b wsn430-v1_4 z1

include $(RIOTBASE)/Makefile.include
3 changes: 0 additions & 3 deletions tests/struct_tm_utility/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,4 @@ USEMODULE += shell
USEMODULE += shell_commands
USEMODULE += timex

# The MSP-430 toolchain lacks sscanf:
BOARD_BLACKLIST := chronos msb-430 msb-430h telosb wsn430-v1_3b wsn430-v1_4 z1

include $(RIOTBASE)/Makefile.include
3 changes: 0 additions & 3 deletions tests/unittests/tests-rtc/Makefile.include
Original file line number Diff line number Diff line change
Expand Up @@ -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