diff options
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/result_formatter.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/result_formatter.py | 5 |
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 9cd37a049d0..97319f84957 100644 --- a/lldb/packages/Python/lldbsuite/test/result_formatter.py +++ b/lldb/packages/Python/lldbsuite/test/result_formatter.py @@ -738,8 +738,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 |