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:
commit
7f83c450c8
@ -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__":
|
||||
|
Loading…
Reference in New Issue
Block a user