summaryrefslogtreecommitdiff
path: root/tester
diff options
context:
space:
mode:
authorKinsey Moore <kinsey.moore@oarcorp.com>2020-11-24 14:50:39 -0600
committerJoel Sherrill <joel@rtems.org>2020-11-25 16:18:03 -0600
commit2bb7d3a1bb1f49ad65741c64a2a7a974b3e85eae (patch)
treef710dfff0f9f8562aabdf8d62580245d4b2cd985 /tester
parent7b63e355db464d044f4b4c25fb19fb3f20ecae97 (diff)
tester: Report fatal-error test states as failures
Tests resulting in the fatal-error state are counted as failures, but are not currently reported in the text summary. This has already been fixed for JSON output.
Diffstat (limited to 'tester')
-rw-r--r--tester/rt/report.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tester/rt/report.py b/tester/rt/report.py
index be8df74..0e19edc 100644
--- a/tester/rt/report.py
+++ b/tester/rt/report.py
@@ -321,6 +321,7 @@ class report(object):
if self.failed:
l += ['Failures:']
l += show_state(self.results, 'failed', self.name_max_len)
+ l += show_state(self.results, 'fatal-error', self.name_max_len)
if self.user_input:
l += ['User Input:']
l += show_state(self.results, 'user-input', self.name_max_len)