tests/xtimer_remove: added pexpect script
This commit is contained in:
parent
77c8a9a6b7
commit
cadedcfe6c
@ -4,3 +4,6 @@ include ../Makefile.tests_common
|
||||
USEMODULE += xtimer
|
||||
|
||||
include $(RIOTBASE)/Makefile.include
|
||||
|
||||
test:
|
||||
tests/01-run.py
|
||||
|
||||
29
tests/xtimer_remove/tests/01-run.py
Executable file
29
tests/xtimer_remove/tests/01-run.py
Executable file
@ -0,0 +1,29 @@
|
||||
#!/usr/bin/env python3
|
||||
|
||||
# Copyright (C) 2017 Freie Universität Berlin
|
||||
#
|
||||
# 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_exact("xtimer_remove test application.")
|
||||
child.expect_exact("Setting 3 timers, removing timer 0/3")
|
||||
child.expect_exact("timer 1 triggered.")
|
||||
child.expect_exact("timer 2 triggered.")
|
||||
child.expect_exact("Setting 3 timers, removing timer 1/3")
|
||||
child.expect_exact("timer 0 triggered.")
|
||||
child.expect_exact("timer 2 triggered.")
|
||||
child.expect_exact("Setting 3 timers, removing timer 2/3")
|
||||
child.expect_exact("timer 0 triggered.")
|
||||
child.expect_exact("timer 1 triggered.")
|
||||
child.expect_exact("test successful.")
|
||||
|
||||
if __name__ == "__main__":
|
||||
sys.exit(testrunner.run(testfunc))
|
||||
Loading…
x
Reference in New Issue
Block a user