# Copyright (C) 2018-19 Freie Universität Berlin # 2017 Cenk Gündoğan # 2016 Kaspar Schleiser # 2014 Martine Lenders # # 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 from traceback import print_tb import pexpect from .spawn import find_exc_origin, setup_child, teardown_child from .unittest import PexpectTestCase # noqa, F401 expose to users from .utils import test_utils_interactive_sync # noqa, F401 expose to users # Timeout for tests can be changed by setting RIOT_TEST_TIMEOUT to the desired # value in the environment variables # default value (10) TIMEOUT = int(os.environ.get('RIOT_TEST_TIMEOUT') or 10) def run(testfunc, timeout=TIMEOUT, echo=True, traceback=False): child = setup_child(timeout, env=os.environ, logfile=sys.stdout if echo else None) try: testfunc(child) except pexpect.TIMEOUT: trace = find_exc_origin(sys.exc_info()[2]) print("Timeout in expect script at \"%s\" (%s:%d)" % trace) if traceback: print_tb(sys.exc_info()[2]) return 1 except pexpect.EOF: trace = find_exc_origin(sys.exc_info()[2]) print("Unexpected end of file in expect script at \"%s\" (%s:%d)" % trace) if traceback: print_tb(sys.exc_info()[2]) return 1 finally: print("") teardown_child(child) return 0