diff options
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/result_formatter.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/result_formatter.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/result_formatter.py b/lldb/packages/Python/lldbsuite/test/result_formatter.py index ff77c1411ba..e173fd2fda1 100644 --- a/lldb/packages/Python/lldbsuite/test/result_formatter.py +++ b/lldb/packages/Python/lldbsuite/test/result_formatter.py @@ -163,6 +163,7 @@ class EventBuilder(object): TYPE_TEST_RESULT = "test_result" TYPE_TEST_START = "test_start" TYPE_MARK_TEST_RERUN_ELIGIBLE = "test_eligible_for_rerun" + TYPE_SESSION_TERMINATE = "terminate" RESULT_TYPES = set([ TYPE_JOB_RESULT, @@ -687,7 +688,7 @@ class ResultsFormatter(object): component_count += 1 if "test_class" in test_result_event: if component_count > 0: - key += "." + key += ":" key += test_result_event["test_class"] component_count += 1 if "test_name" in test_result_event: |