1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Merge pull request #1059 from mehlis/test-bloom-blacklist

test: bloom: backlist platforms
This commit is contained in:
René Kijewski 2014-04-26 15:57:21 +02:00
commit bda23cb246
2 changed files with 18 additions and 9 deletions

View File

@ -1,11 +1,16 @@
export PROJECT = test_bloom
include ../Makefile.tests_common
ifneq (,$(filter msb-430,$(BOARD)))
include $(RIOTBASE)/Makefile.unsupported
elifneq (,$(filter msb-430h,$(BOARD)))
include $(RIOTBASE)/Makefile.unsupported
endif
BOARD_BLACKLIST := chronos mbed_lpc1768 msb-430 msb-430h redbee-econotag \
telosb wsn430-v1_3b wsn430-v1_4
# chronos: not enough RAM
# mbed_lpc1768: not enough RAM
# msb-430: not enough RAM
# msb-430h: not enough RAM
# redbee-econotag: not enough RAM
# telosb: not enough RAM
# wsn430-v1_3b: not enough RAM
# wsn430-v1_4: not enough RAM
USEMODULE += hashes
USEMODULE += bloom

View File

@ -1,9 +1,14 @@
export PROJECT = test_bloom
include ../Makefile.tests_common
ifneq (,$(filter msb-430,$(BOARD)))
include $(RIOTBASE)/Makefile.unsupported
else
BOARD_BLACKLIST := msb-430 msb-430h \
telosb wsn430-v1_3b wsn430-v1_4
# chronos: https://github.com/RIOT-OS/RIOT/issues/1061
# msb-430: https://github.com/RIOT-OS/RIOT/issues/1061
# msb-430h: https://github.com/RIOT-OS/RIOT/issues/1061
# telosb: https://github.com/RIOT-OS/RIOT/issues/1061
# wsn430-v1_3b: https://github.com/RIOT-OS/RIOT/issues/1061
# wsn430-v1_4: https://github.com/RIOT-OS/RIOT/issues/1061
USEMODULE += hashes
USEMODULE += bloom
@ -12,4 +17,3 @@ USEMODULE += random
DISABLE_MODULE += auto_init
include $(RIOTBASE)/Makefile.include
endif