Skip to content
Snippets Groups Projects
Unverified Commit dc82d995 authored by Cenk Gündoğan's avatar Cenk Gündoğan Committed by GitHub
Browse files

Merge pull request #8181 from haukepetersen/opt_testrunner_minorstyle

tools/testrunner: minor code beautification
parents b62ebf5e 2ead5ef3
No related branches found
No related tags found
No related merge requests found
......@@ -26,9 +26,7 @@ def find_exc_origin(exc_info):
pos = list_until(extract_tb(exc_info),
lambda frame: frame[0].startswith(PEXPECT_PATH)
)[-1]
return pos[3], \
os.path.relpath(os.path.abspath(pos[0]), RIOTBASE), \
pos[1]
return (pos[3], os.path.relpath(os.path.abspath(pos[0]), RIOTBASE), pos[1])
def run(testfunc, timeout=10, echo=True, traceback=False):
env = os.environ.copy()
......@@ -49,16 +47,14 @@ def run(testfunc, timeout=10, echo=True, traceback=False):
try:
testfunc(child)
except pexpect.TIMEOUT:
line, filename, lineno = find_exc_origin(sys.exc_info()[2])
print("Timeout in expect script at \"%s\" (%s:%d)" %
(line, filename, lineno))
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:
line, filename, lineno = find_exc_origin(sys.exc_info()[2])
print("Unexpected end of file in expect script at \"%s\" (%s:%d)" %
(line, filename, lineno))
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
......
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