1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-17 05:12:57 +01:00

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

tests/libfixmath_unittests: fix for iotlab-m3 and samr21-xpro
This commit is contained in:
Kaspar Schleiser 2018-05-09 15:30:26 +02:00 committed by GitHub
commit 7f83c450c8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 1 deletions

View File

@ -15,6 +15,8 @@ ifneq (,$(filter native,$(BOARD)))
export LINKFLAGS += -lm
endif
USEMODULE += printf_float
include $(RIOTBASE)/Makefile.include
test:

View File

@ -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__":