Skip to content

Commit c674ecf

Browse files
committed
test/unittests: add arduino-mkr1000 for ARM and unsufficient memory boards
1 parent b1a6ec3 commit c674ecf

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

tests/unittests/Makefile

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ APPLICATION = unittests
22
include ../Makefile.tests_common
33

44
BOARD_INSUFFICIENT_MEMORY := airfy-beacon arduino-duemilanove arduino-mega2560 \
5-
arduino-uno arduino-zero calliope-mini cc2538dk \
6-
cc2650stk chronos ek-lm4f120xl limifrog-v1 maple-mini \
7-
mbed_lpc1768 microbit msb-430 msb-430h nrf51dongle \
8-
nrf6310 nucleo32-f031 nucleo32-f042 nucleo32-f303 \
9-
nucleo32-l031 nucleo-f030 nucleo-f070 nucleo-f072 \
10-
nucleo-f091 nucleo-f103 nucleo-f302 nucleo-f334 \
5+
arduino-uno arduino-mkr1000 arduino-zero calliope-mini \
6+
cc2538dk cc2650stk chronos ek-lm4f120xl limifrog-v1 \
7+
maple-mini mbed_lpc1768 microbit msb-430 msb-430h \
8+
nrf51dongle nrf6310 nucleo32-f031 nucleo32-f042 \
9+
nucleo32-f303 nucleo32-l031 nucleo-f030 nucleo-f070 \
10+
nucleo-f072 nucleo-f091 nucleo-f103 nucleo-f302 nucleo-f334 \
1111
nucleo-f410 nucleo-l053 nucleo-l073 opencm904 openmote \
1212
openmote-cc2538 pba-d-01-kw2x pca10000 pca10005 \
1313
remote-pa remote-reva remote-revb saml21-xpro \
@@ -29,8 +29,8 @@ endif
2929
ARM7_BOARDS := msba2 avrextrem
3030
DISABLE_TEST_FOR_ARM7 := tests-relic
3131

32-
ARM_CORTEX_M_BOARDS := airfy-beacon arduino-due arduino-zero cc2538dk ek-lm4f120xl \
33-
f4vi1 fox frdm-k64f iotlab-m3 limifrog-v1 mbed_lpc1768 msbiot \
32+
ARM_CORTEX_M_BOARDS := airfy-beacon arduino-due arduino-mkr1000 arduino-zero cc2538dk \
33+
ek-lm4f120xl f4vi1 fox frdm-k64f iotlab-m3 limifrog-v1 mbed_lpc1768 msbiot \
3434
mulle nrf51dongle nrf6310 nucleo144-f303 nucleo144-f429 nucleo144-f446 \
3535
nucleo32-f031 nucleo32-f303 nucleo32-l031 nucleo-f030 nucleo-f070 nucleo-f091 \
3636
nucleo-f302 nucleo-f303 nucleo-f334 nucleo-f401 nucleo-f410 nucleo-f411 \
@@ -46,7 +46,7 @@ AVR_BOARDS := arduino-mega2560 waspmote-pro arduino-uno arduino-duemilanove
4646
DISABLE_TEST_FOR_AVR := tests-relic
4747

4848
MSP430_BOARDS := chronos msb-430 msb-430h telosb wsn430-v1_3b wsn430-v1_4 z1
49-
DISABLE_TEST_FOR_MSP430 := tests-relic tests-spiffs
49+
DISABLE_TEST_FOR_MSP430 := tests-relic
5050

5151
ifneq (, $(filter $(ARM7_BOARDS), $(BOARD)))
5252
UNIT_TESTS := $(filter-out $(DISABLE_TEST_FOR_ARM7), $(UNIT_TESTS))
@@ -61,7 +61,7 @@ UNIT_TESTS := $(filter-out $(DISABLE_TEST_FOR_AVR), $(UNIT_TESTS))
6161
endif
6262

6363
ifneq (, $(filter $(MSP430_BOARDS), $(BOARD)))
64-
UNIT_TESTS := $(filter-out $(DISABLE_TEST_FOR_MSP430), $(UNIT_TESTS))
64+
UNIT_TESTS := $(filter-out $(DISABLE_TEST_FOR_AVR), $(UNIT_TESTS))
6565
endif
6666

6767
DISABLE_MODULE += auto_init

0 commit comments

Comments
 (0)