1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00
RIOT/tests/pthread_condition_variable/tests/01-run.py
Alexandre Abadie 87dd5f9341 tests/pthread_condition_variable: increase timeout
Otherwise it raises a timeout on slow boards. It takes around 2 minutes
on nrf51 based boards (e.g microbit)
2018-12-14 22:05:12 +01:00

21 lines
473 B
Python
Executable File

#!/usr/bin/env python3
import sys
from testrunner import run
# This test can take some time to complete when testing on hardware (e.g
# on samr21-xpro) and the default timeout (10s) is not enough.
# For example, it takes about 2 minutes to complete on a microbit.
TIMEOUT = 150
def testfunc(child):
child.expect('START')
child.expect('condition fulfilled.')
child.expect('SUCCESS')
if __name__ == "__main__":
sys.exit(run(testfunc, timeout=TIMEOUT))