mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
3893f04d00
Testrunner is now impported as a package found in PYTHONPATH, so import can be placed at the top of the script as usual.
33 lines
832 B
Python
Executable File
33 lines
832 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
# Copyright (C) 2017 Michel Rottleuthner <michel.rottleuthner@haw-hamburg.de>
|
|
#
|
|
# This file is subject to the terms and conditions of the GNU Lesser
|
|
# General Public License v2.1. See the file LICENSE in the top level
|
|
# directory for more details.
|
|
|
|
import sys
|
|
import pexpect
|
|
from testrunner import run
|
|
|
|
|
|
def testfunc(child):
|
|
child.expect(u"This test will call xtimer_usleep for values from \\d+ down to \\d+\r\n")
|
|
|
|
i = 500
|
|
|
|
while (i >= 0):
|
|
try:
|
|
child.expect(u"going to sleep \\d+ usecs...\r\n", timeout=3)
|
|
except pexpect.TIMEOUT:
|
|
print("xtimer stuck when trying to sleep %d usecs" % (i+1))
|
|
print("[FAILED]")
|
|
break
|
|
i = i - 1
|
|
|
|
child.expect(u"[SUCCESS]", timeout=3)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
sys.exit(run(testfunc))
|