1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +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 export PROJECT = test_bloom
include ../Makefile.tests_common include ../Makefile.tests_common
ifneq (,$(filter msb-430,$(BOARD))) BOARD_BLACKLIST := chronos mbed_lpc1768 msb-430 msb-430h redbee-econotag \
include $(RIOTBASE)/Makefile.unsupported telosb wsn430-v1_3b wsn430-v1_4
elifneq (,$(filter msb-430h,$(BOARD))) # chronos: not enough RAM
include $(RIOTBASE)/Makefile.unsupported # mbed_lpc1768: not enough RAM
endif # 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 += hashes
USEMODULE += bloom USEMODULE += bloom

View File

@ -1,9 +1,14 @@
export PROJECT = test_bloom export PROJECT = test_bloom
include ../Makefile.tests_common include ../Makefile.tests_common
ifneq (,$(filter msb-430,$(BOARD))) BOARD_BLACKLIST := msb-430 msb-430h \
include $(RIOTBASE)/Makefile.unsupported telosb wsn430-v1_3b wsn430-v1_4
else # 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 += hashes
USEMODULE += bloom USEMODULE += bloom
@ -12,4 +17,3 @@ USEMODULE += random
DISABLE_MODULE += auto_init DISABLE_MODULE += auto_init
include $(RIOTBASE)/Makefile.include include $(RIOTBASE)/Makefile.include
endif