mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
27 lines
738 B
Makefile
27 lines
738 B
Makefile
APPLICATION = cbor
|
|
include ../Makefile.tests_common
|
|
|
|
BOARD_BLACKLIST := arduino-duemilanove arduino-mega2560 arduino-uno
|
|
BOARD_BLACKLIST += chronos
|
|
BOARD_BLACKLIST += mips-malta
|
|
BOARD_BLACKLIST += msb-430 msb-430h
|
|
BOARD_BLACKLIST += nucleo32-f031
|
|
BOARD_BLACKLIST += pic32-clicker pic32-wifire
|
|
BOARD_BLACKLIST += qemu-i386
|
|
BOARD_BLACKLIST += telosb
|
|
BOARD_BLACKLIST += waspmote-pro
|
|
BOARD_BLACKLIST += wsn430-v1_3b wsn430-v1_4
|
|
BOARD_BLACKLIST += z1
|
|
|
|
USEMODULE += cbor
|
|
USEMODULE += cbor_ctime
|
|
USEMODULE += cbor_float
|
|
USEMODULE += cbor_semantic_tagging
|
|
|
|
include $(RIOTBASE)/Makefile.include
|
|
|
|
test:
|
|
# `testrunner` calls `make term` recursively, results in duplicated `TERMFLAGS`.
|
|
# So clears `TERMFLAGS` before run.
|
|
TERMFLAGS= tests/01-run.py
|