Skip to content
Snippets Groups Projects
Unverified Commit 7f83c450 authored by Kaspar Schleiser's avatar Kaspar Schleiser Committed by GitHub
Browse files

Merge pull request #9100 from cladmi/pr/tests/libfixmath_unittests

tests/libfixmath_unittests: fix for iotlab-m3 and samr21-xpro
parents 83e8a521 2c240cad
No related branches found
No related tags found
No related merge requests found
......@@ -15,6 +15,8 @@ ifneq (,$(filter native,$(BOARD)))
export LINKFLAGS += -lm
endif
USEMODULE += printf_float
include $(RIOTBASE)/Makefile.include
test:
......
......@@ -9,9 +9,13 @@
import os
import sys
# Float and print operations are slow on boards
# Got 80 iotlab-m3 and 250 on samr21-xpro
TIMEOUT = 300
def testfunc(child):
child.expect('SUCCESS')
child.expect('SUCCESS', timeout=TIMEOUT)
if __name__ == "__main__":
......
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