1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/tests/bloom_bytes/Makefile
Gaëtan Harter 124e1dd3fa
tests/bloom_bytes: replace %f with fmt/print_float
Even if using `%f` the `printf_float` module was not used.

When running the test on `samr21-xpro` and `arduino-mega2560` the float
is not printed correctly.

 * samr21-xpro ` false positive rate.`
 * arduino-mega2560 `? false positive rate.`

As the arduino-mega2560 does not handle printf_float use
`fmt/print_float`.

The output should be flushed before using fmt/print functions if
available as they do not use `printf` buffer.
2019-02-21 16:19:38 +01:00

18 lines
380 B
Makefile

include ../Makefile.tests_common
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-uno chronos \
msb-430 msb-430h telosb wsn430-v1_3b wsn430-v1_4 z1
USEMODULE += hashes
USEMODULE += bloom
USEMODULE += random
USEMODULE += xtimer
USEMODULE += fmt
DISABLE_MODULE += auto_init
TEST_ON_CI_WHITELIST += all
include $(RIOTBASE)/Makefile.include