Replace the 'xtimer_sleep' hack to prevent flooding at startup to use test_utils_interactive_sync for synchronizing.
44 lines
1.2 KiB
Python
Executable File
44 lines
1.2 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
import sys
|
|
from testrunner import run, test_utils_interactive_sync
|
|
|
|
|
|
def expect_unary(child):
|
|
for _ in range(20):
|
|
for op_name in ('abs', 'sq', 'atan', 'exp'):
|
|
child.expect('{}\(-?\d+\.\d+\) = -?\d+\.\d+'.format(op_name))
|
|
|
|
for _ in range(20):
|
|
for op_name in ('sin', 'cos', 'tan'):
|
|
child.expect('{}\(-?\d+.\d+\) = -?\d+.\d+'.format(op_name))
|
|
|
|
for _ in range(20):
|
|
for op_name in ('asin', 'acos'):
|
|
child.expect('{}\(-?\d+.\d+\) = -?\d+.\d+'.format(op_name))
|
|
|
|
for _ in range(20):
|
|
for op_name in ('sqrt', 'log', 'log2', 'slog2'):
|
|
child.expect('{}\(-?\d+.\d+\) = -?\d+.\d+'.format(op_name))
|
|
|
|
|
|
def expect_binary(child):
|
|
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+'
|
|
.format(op_name))
|
|
|
|
|
|
def testfunc(child):
|
|
test_utils_interactive_sync(child)
|
|
child.expect_exact('Unary.')
|
|
expect_unary(child)
|
|
child.expect_exact('Binary.')
|
|
expect_binary(child)
|
|
child.expect_exact('SUCCESS')
|
|
|
|
|
|
if __name__ == "__main__":
|
|
sys.exit(run(testfunc))
|