summaryrefslogtreecommitdiffstats
path: root/tester/rt/report.py
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2016-03-14 15:09:00 +1100
committerChris Johns <chrisj@rtems.org>2016-03-14 15:09:00 +1100
commit3e9b17994afb78da6bd26c0585dc239bea354ec8 (patch)
tree4e6cf4f29c7c8e11be1124f5b9c95fb9b9155d02 /tester/rt/report.py
parentPython 2 and python 3 refactor fixes. (diff)
downloadrtems-tools-3e9b17994afb78da6bd26c0585dc239bea354ec8.tar.bz2
rtemstoolkit: Fix execute's writer thread to not eval() the input.
The conversion to Python3 added an eval() call which is wrong. Fix the spelling in execute. Fix labels in the tester gdb locking. Check the debug-trace arguments. Close #2642.
Diffstat (limited to 'tester/rt/report.py')
-rw-r--r--tester/rt/report.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tester/rt/report.py b/tester/rt/report.py
index 1aa1f35..ee282a5 100644
--- a/tester/rt/report.py
+++ b/tester/rt/report.py
@@ -145,6 +145,7 @@ class report(object):
if name not in self.results:
self.lock.release()
raise error.general('test report missing: %s' % (name))
+ exe = path.basename(self.results[name]['exe'])
result = self.results[name]['result']
time = self.results[name]['end'] - self.results[name]['start']
if mode != 'none':
@@ -158,8 +159,7 @@ class report(object):
log.output(header)
if output:
log.output(output)
- if header:
- log.output('Result: %-10s Time: %s' % (result, str(time)))
+ log.output('Result: %-10s Time: %s %s' % (result, str(time), exe))
def summary(self):
def show_state(results, state, max_len):