2014-07-22 20:24:45 +02:00
|
|
|
APPLICATION = libfixmath_unittests
|
|
|
|
include ../Makefile.tests_common
|
|
|
|
|
2016-09-19 21:46:55 +02:00
|
|
|
BOARD_BLACKLIST := arduino-mega2560 waspmote-pro arduino-uno arduino-duemilanove
|
2014-07-15 12:11:04 +02:00
|
|
|
# arduino-mega2560: builds locally but breaks travis (possibly because of
|
|
|
|
# differences in the toolchain)
|
|
|
|
|
2014-07-22 20:24:45 +02:00
|
|
|
# The MSP boards don't feature round(), exp(), and log(), which are used in the unittests
|
2015-07-07 00:08:26 +02:00
|
|
|
BOARD_BLACKLIST += chronos msb-430 msb-430h telosb wsn430-v1_3b wsn430-v1_4 z1
|
2014-07-22 20:24:45 +02:00
|
|
|
|
2017-01-18 22:04:59 +01:00
|
|
|
BOARD_INSUFFICIENT_MEMORY := weio nucleo32-f042
|
2016-05-12 16:39:43 +02:00
|
|
|
|
2014-07-22 20:24:45 +02:00
|
|
|
USEMODULE += libfixmath-unittests
|
|
|
|
|
2015-07-22 09:49:28 +02:00
|
|
|
ifneq (,$(filter native qemu-i386,$(BOARD)))
|
|
|
|
export LINKFLAGS += -lm
|
|
|
|
endif
|
|
|
|
|
2014-07-22 20:24:45 +02:00
|
|
|
include $(RIOTBASE)/Makefile.include
|