diff options
author | Zachary Turner <zturner@google.com> | 2015-12-07 21:23:41 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2015-12-07 21:23:41 +0000 |
commit | 905a98881b69bd1ec14de833db8b589061e37da1 (patch) | |
tree | 979a51c40072477d180667602b3ceedb126006b4 /lldb/packages/Python/lldbsuite/test/dosep.py | |
parent | 6d90d9f102c6a401e84b92506b2ab011c5c72362 (diff) | |
download | bcm5719-llvm-905a98881b69bd1ec14de833db8b589061e37da1.tar.gz bcm5719-llvm-905a98881b69bd1ec14de833db8b589061e37da1.zip |
Rename test_results.py to result_formatter.py.
There is already a class called LLDBTestResults which I would like
to move into a separate file, but the most appropriate filename
was taken.
llvm-svn: 254946
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/dosep.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/dosep.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/dosep.py b/lldb/packages/Python/lldbsuite/test/dosep.py index c98136f3634..6b6343c8144 100644 --- a/lldb/packages/Python/lldbsuite/test/dosep.py +++ b/lldb/packages/Python/lldbsuite/test/dosep.py @@ -53,7 +53,7 @@ import lldbsuite.support.seven as seven from . import dotest_channels from . import dotest_args -from . import test_results +from . import result_formatter # Todo: Convert this folder layout to be relative-import friendly and don't hack up # sys.path like this @@ -1429,9 +1429,9 @@ def main(print_details_on_success, num_threads, test_subdir, # Figure out exit code by count of test result types. issue_count = ( results_formatter.counts_by_test_result_status( - test_results.EventBuilder.STATUS_ERROR) + + result_formatter.EventBuilder.STATUS_ERROR) + results_formatter.counts_by_test_result_status( - test_results.EventBuilder.STATUS_FAILURE) + + result_formatter.EventBuilder.STATUS_FAILURE) + timeout_count) # Return with appropriate result code if issue_count > 0: |