diff options
author | Todd Fiala <todd.fiala@gmail.com> | 2015-12-15 21:33:38 +0000 |
---|---|---|
committer | Todd Fiala <todd.fiala@gmail.com> | 2015-12-15 21:33:38 +0000 |
commit | 6d3de1231517dc20994bee5fc9ad09a2d2752025 (patch) | |
tree | 594abf8a18d6a3c5a3b1dcbf99233c9582f15bdc /lldb/packages/Python/lldbsuite/test/dotest.py | |
parent | 0b17d44faf9bb680a42a22653a9be1ea6c77034b (diff) | |
download | bcm5719-llvm-6d3de1231517dc20994bee5fc9ad09a2d2752025.tar.gz bcm5719-llvm-6d3de1231517dc20994bee5fc9ad09a2d2752025.zip |
test-infra: refactored new summary results into base ResultsFormatter class
This allows more specialized formatters to still reuse the results
summarization display from the base class.
llvm-svn: 255676
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/dotest.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/dotest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/dotest.py b/lldb/packages/Python/lldbsuite/test/dotest.py index 536aced3bd2..9fc6894b45b 100644 --- a/lldb/packages/Python/lldbsuite/test/dotest.py +++ b/lldb/packages/Python/lldbsuite/test/dotest.py @@ -383,7 +383,7 @@ def parseOptionsAndInitTestdirs(): # 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") + "lldbsuite.test.result_formatter.ResultsFormatter") # rerun-related arguments configuration.rerun_all_issues = args.rerun_all_issues |