Skip to content
Snippets Groups Projects
Unverified Commit 059ef5c4 authored by José Ignacio Alamos Aste's avatar José Ignacio Alamos Aste Committed by GitHub
Browse files

Merge pull request #10201 from MrKevinWeiss/pr/tests/fixlibfixmath

tests/libfixmath: Add delay at start of test
parents 6f37f7ed 646c6d67
No related branches found
No related tags found
No related merge requests found
...@@ -2,7 +2,8 @@ include ../Makefile.tests_common ...@@ -2,7 +2,8 @@ include ../Makefile.tests_common
USEPKG += libfixmath USEPKG += libfixmath
USEMODULE += libfixmath USEMODULE += libfixmath
USEMODULE += xtimer
TEST_ON_CI_WHITELIST += native TEST_ON_CI_WHITELIST += all
include $(RIOTBASE)/Makefile.include include $(RIOTBASE)/Makefile.include
...@@ -30,6 +30,7 @@ ...@@ -30,6 +30,7 @@
#include <stdio.h> #include <stdio.h>
#include "xtimer.h"
#include "fix16.h" #include "fix16.h"
#ifndef M_PI #ifndef M_PI
...@@ -184,6 +185,8 @@ static void unary_ops(void) ...@@ -184,6 +185,8 @@ static void unary_ops(void)
int main(void) int main(void)
{ {
/* Delay output to prevent flooding of buffer */
xtimer_sleep(1);
puts("Unary."); puts("Unary.");
unary_ops(); unary_ops();
......
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