From cadedcfe6c3895be7b6656ab0e475cb3c09b9084 Mon Sep 17 00:00:00 2001 From: Hauke Petersen Date: Tue, 24 Oct 2017 21:23:35 +0200 Subject: [PATCH] tests/xtimer_remove: added pexpect script --- tests/xtimer_remove/Makefile | 3 +++ tests/xtimer_remove/tests/01-run.py | 29 +++++++++++++++++++++++++++++ 2 files changed, 32 insertions(+) create mode 100755 tests/xtimer_remove/tests/01-run.py diff --git a/tests/xtimer_remove/Makefile b/tests/xtimer_remove/Makefile index a60310569b..19196c3001 100644 --- a/tests/xtimer_remove/Makefile +++ b/tests/xtimer_remove/Makefile @@ -4,3 +4,6 @@ include ../Makefile.tests_common USEMODULE += xtimer include $(RIOTBASE)/Makefile.include + +test: + tests/01-run.py diff --git a/tests/xtimer_remove/tests/01-run.py b/tests/xtimer_remove/tests/01-run.py new file mode 100755 index 0000000000..203ad6dd8c --- /dev/null +++ b/tests/xtimer_remove/tests/01-run.py @@ -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))