From 1f99176fe5839fef9ef3cba18da25230a224e870 Mon Sep 17 00:00:00 2001 From: Todd Fiala Date: Wed, 9 Dec 2015 18:01:14 +0000 Subject: Turn on new test summary results by default. llvm-svn: 255130 --- lldb/packages/Python/lldbsuite/test/dotest.py | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'lldb/packages/Python/lldbsuite/test/dotest.py') diff --git a/lldb/packages/Python/lldbsuite/test/dotest.py b/lldb/packages/Python/lldbsuite/test/dotest.py index fd81257..9d1d829 100644 --- a/lldb/packages/Python/lldbsuite/test/dotest.py +++ b/lldb/packages/Python/lldbsuite/test/dotest.py @@ -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: -- cgit v1.1