Blame view

RIOT/dist/tools/testrunner/testrunner.py 1.14 KB
a752c7ab   elopes   add first test an...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
  #!/usr/bin/env python3
  
  # Copyright (C) 2016 Kaspar Schleiser <kaspar@schleiser.de>
  #               2014 Martine Lenders <mlenders@inf.fu-berlin.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, signal, sys, subprocess
  from pexpect import spawnu, TIMEOUT, EOF
  from traceback import print_tb
  
  def run(testfunc, timeout=10, echo=True, traceback=False):
      env = os.environ.copy()
      child = spawnu("make term", env=env, timeout=timeout)
      if echo:
          child.logfile = sys.stdout
  
      try:
          subprocess.check_output(('make', 'reset'), env=env,
                                  stderr=subprocess.PIPE)
      except subprocess.CalledProcessError:
          # make reset yields error on some boards even if successful
          pass
      try:
          testfunc(child)
      except TIMEOUT:
          print("Timeout in expect script")
          if traceback:
              print_tb(sys.exc_info()[2])
          return 1
      finally:
          print("")
          os.killpg(os.getpgid(child.pid), signal.SIGKILL)
          child.close()
  
      return 0