Skip to content
Snippets Groups Projects
Unverified Commit a524d9f9 authored by Martine Lenders's avatar Martine Lenders Committed by GitHub
Browse files

Merge pull request #8027 from aabadie/pr/test_pexpect_periph_timer

tests/periph_timer: migrate to testrunner
parents 9d99add1 df35860c
No related branches found
No related tags found
No related merge requests found
......@@ -4,3 +4,6 @@ include ../Makefile.tests_common
FEATURES_REQUIRED = periph_timer
include $(RIOTBASE)/Makefile.include
test:
tests/01-run.py
#!/usr/bin/env python3
# Copyright (C) 2016 Kaspar Schleiser <kaspar@schleiser.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 os
import sys
sys.path.append(os.path.join(os.environ['RIOTBASE'], 'dist/tools/testrunner'))
import testrunner
def testfunc(child):
child.expect('Available timers: (\d+)')
timers_num = int(child.match.group(1))
for timer in range(timers_num):
child.expect_exact('Testing TIMER_{}'.format(timer))
child.expect_exact('TIMER_{}: initialization successful'.format(timer))
child.expect_exact('TIMER_{}: stopped'.format(timer))
child.expect_exact('TIMER_{}: starting'.format(timer))
child.expect('TEST SUCCEEDED')
if __name__ == "__main__":
sys.exit(testrunner.run(testfunc))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment