tests/libfixmath: fix range of loop in test script

The range for the loop was orders of magnitude too low.
    While the tests succeeds on native, it fails on real
    boards with a timeout.
This commit is contained in:
smlng 2018-01-30 10:46:34 +01:00
parent 934b075f76
commit 6caa9f9e51

View File

@ -23,7 +23,7 @@ def expect_unary(child):
def expect_binary(child):
for _ in range(20):
for _ in range(1500):
for op_name in ('add', 'sub', 'mul', 'div', 'mod', 'sadd', 'ssub',
'smul', 'sdiv', 'min', 'max'):
child.expect('{}\(-?\d+.\d+\, -?\d+.\d+\) = -?\d+.\d+'