From 0a7c32b38e36e16ee7c406cb26e9f13df1eb1a1a Mon Sep 17 00:00:00 2001 From: Todd Fiala Date: Wed, 9 Dec 2015 19:05:44 +0000 Subject: Fix new summary to include exceptional exit count in determining exit value The main dotest.py should exit with a system return code of 1 on any issue. This change fixes a place where I omitted counting the exceptional exit value to determine if we should return 1 when using the new summary results. This change also puts a banner around the Issue Details section that comes before the Test Result Summary. llvm-svn: 255138 --- lldb/packages/Python/lldbsuite/test/dosep.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'lldb/packages/Python/lldbsuite/test/dosep.py') diff --git a/lldb/packages/Python/lldbsuite/test/dosep.py b/lldb/packages/Python/lldbsuite/test/dosep.py index 0861b709732..f346d7ebfc9 100644 --- a/lldb/packages/Python/lldbsuite/test/dosep.py +++ b/lldb/packages/Python/lldbsuite/test/dosep.py @@ -1557,7 +1557,9 @@ def main(print_details_on_success, num_threads, test_subdir, results_formatter.counts_by_test_result_status( EventBuilder.STATUS_FAILURE) + results_formatter.counts_by_test_result_status( - EventBuilder.STATUS_TIMEOUT) + EventBuilder.STATUS_TIMEOUT) + + results_formatter.counts_by_test_result_status( + EventBuilder.STATUS_EXCEPTIONAL_EXIT) ) # Return with appropriate result code -- cgit v1.2.3