mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
124e1dd3fa
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.
18 lines
380 B
Makefile
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
|