summaryrefslogtreecommitdiffstats
path: root/lldb/packages/Python/lldbsuite/test/result_formatter.py
diff options
context:
space:
mode:
authorTodd Fiala <todd.fiala@gmail.com>2015-12-09 18:01:14 +0000
committerTodd Fiala <todd.fiala@gmail.com>2015-12-09 18:01:14 +0000
commit1f99176fe5839fef9ef3cba18da25230a224e870 (patch)
treeef36ebfba1c591e4fef9d2ed33d1818f7639d446 /lldb/packages/Python/lldbsuite/test/result_formatter.py
parentd2725a31eb9da5efd348f0d290ebdaccb9ceb406 (diff)
downloadbcm5719-llvm-1f99176fe5839fef9ef3cba18da25230a224e870.tar.gz
bcm5719-llvm-1f99176fe5839fef9ef3cba18da25230a224e870.zip
Turn on new test summary results by default.
llvm-svn: 255130
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/result_formatter.py')
-rw-r--r--lldb/packages/Python/lldbsuite/test/result_formatter.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/result_formatter.py b/lldb/packages/Python/lldbsuite/test/result_formatter.py
index f8369487a29..10b404add26 100644
--- a/lldb/packages/Python/lldbsuite/test/result_formatter.py
+++ b/lldb/packages/Python/lldbsuite/test/result_formatter.py
@@ -685,8 +685,9 @@ class ResultsFormatter(object):
if event_type == "terminate":
self.terminate_called = True
- elif (event_type == EventBuilder.TYPE_TEST_RESULT or
- event_type == EventBuilder.TYPE_JOB_RESULT):
+ elif event_type in [
+ EventBuilder.TYPE_TEST_RESULT,
+ EventBuilder.TYPE_JOB_RESULT]:
# Keep track of event counts per test/job result status type.
# The only job (i.e. inferior process) results that make it
# here are ones that cannot be remapped to the most recently
OpenPOWER on IntegriCloud