diff --git a/tests/libfixmath/Makefile b/tests/libfixmath/Makefile index 7b2316e092..ce035be05c 100644 --- a/tests/libfixmath/Makefile +++ b/tests/libfixmath/Makefile @@ -2,7 +2,8 @@ include ../Makefile.tests_common USEPKG += libfixmath USEMODULE += libfixmath +USEMODULE += xtimer -TEST_ON_CI_WHITELIST += native +TEST_ON_CI_WHITELIST += all include $(RIOTBASE)/Makefile.include diff --git a/tests/libfixmath/main.c b/tests/libfixmath/main.c index a5ec3de2a4..9a763a003e 100644 --- a/tests/libfixmath/main.c +++ b/tests/libfixmath/main.c @@ -30,6 +30,7 @@ #include +#include "xtimer.h" #include "fix16.h" #ifndef M_PI @@ -184,6 +185,8 @@ static void unary_ops(void) int main(void) { + /* Delay output to prevent flooding of buffer */ + xtimer_sleep(1); puts("Unary."); unary_ops();