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:
parent
934b075f76
commit
6caa9f9e51
@ -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+'
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user