Skip to content
Snippets Groups Projects
Unverified Commit 124e1dd3 authored by Gaëtan Harter's avatar Gaëtan Harter
Browse files

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.
parent f5c79ba8
No related branches found
No related tags found
No related merge requests found
...@@ -8,6 +8,8 @@ USEMODULE += bloom ...@@ -8,6 +8,8 @@ USEMODULE += bloom
USEMODULE += random USEMODULE += random
USEMODULE += xtimer USEMODULE += xtimer
USEMODULE += fmt
DISABLE_MODULE += auto_init DISABLE_MODULE += auto_init
TEST_ON_CI_WHITELIST += all TEST_ON_CI_WHITELIST += all
......
...@@ -23,6 +23,7 @@ ...@@ -23,6 +23,7 @@
#include <inttypes.h> #include <inttypes.h>
#include "xtimer.h" #include "xtimer.h"
#include "fmt.h"
#include "hashes.h" #include "hashes.h"
#include "bloom.h" #include "bloom.h"
...@@ -109,7 +110,14 @@ int main(void) ...@@ -109,7 +110,14 @@ int main(void)
printf("%d elements probably in the filter.\n", in); printf("%d elements probably in the filter.\n", in);
printf("%d elements not in the filter.\n", not_in); printf("%d elements not in the filter.\n", not_in);
double false_positive_rate = (double) in / (double) lenA; double false_positive_rate = (double) in / (double) lenA;
printf("%f false positive rate.\n", false_positive_rate); /* Use 'fmt/print_float' to work on all platforms (atmega)
* Stdout should be flushed before to prevent garbled output. */
#ifdef MODULE_NEWLIB
/* no fflush on msp430 */
fflush(stdout);
#endif
print_float(false_positive_rate, 6);
puts(" false positive rate.");
bloom_del(&bloom); bloom_del(&bloom);
printf("\nAll done!\n"); printf("\nAll done!\n");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment