forked from OSchip/llvm-project
Turn on new test summary results by default.
llvm-svn: 255130
This commit is contained in:
parent
d2725a31eb
commit
1f99176fe5
|
@ -464,6 +464,12 @@ def parseOptionsAndInitTestdirs():
|
|||
if args.results_formatter_options:
|
||||
configuration.results_formatter_options = args.results_formatter_options
|
||||
|
||||
# Default to using the BasicResultsFormatter if no formatter is specified
|
||||
# and we're not a test inferior.
|
||||
if not args.inferior and configuration.results_formatter_name is None:
|
||||
configuration.results_formatter_name = (
|
||||
"lldbsuite.test.basic_results_formatter.BasicResultsFormatter")
|
||||
|
||||
if args.lldb_platform_name:
|
||||
configuration.lldb_platform_name = args.lldb_platform_name
|
||||
if args.lldb_platform_url:
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue