| OLD | NEW |
| 1 # Copyright (C) 2010, 2012 Google Inc. All rights reserved. | 1 # Copyright (C) 2010, 2012 Google Inc. All rights reserved. |
| 2 # | 2 # |
| 3 # Redistribution and use in source and binary forms, with or without | 3 # Redistribution and use in source and binary forms, with or without |
| 4 # modification, are permitted provided that the following conditions are | 4 # modification, are permitted provided that the following conditions are |
| 5 # met: | 5 # met: |
| 6 # | 6 # |
| 7 # * Redistributions of source code must retain the above copyright | 7 # * Redistributions of source code must retain the above copyright |
| 8 # notice, this list of conditions and the following disclaimer. | 8 # notice, this list of conditions and the following disclaimer. |
| 9 # * Redistributions in binary form must reproduce the above | 9 # * Redistributions in binary form must reproduce the above |
| 10 # copyright notice, this list of conditions and the following disclaimer | 10 # copyright notice, this list of conditions and the following disclaimer |
| (...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 187 for test_tuple in individual_test_timings: | 187 for test_tuple in individual_test_timings: |
| 188 test_name = test_tuple.test_name | 188 test_name = test_tuple.test_name |
| 189 is_timeout_crash_or_slow = False | 189 is_timeout_crash_or_slow = False |
| 190 if test_name in run_results.slow_tests: | 190 if test_name in run_results.slow_tests: |
| 191 is_timeout_crash_or_slow = True | 191 is_timeout_crash_or_slow = True |
| 192 slow_tests.append(test_tuple) | 192 slow_tests.append(test_tuple) |
| 193 | 193 |
| 194 if test_name in run_results.failures_by_name: | 194 if test_name in run_results.failures_by_name: |
| 195 result = run_results.results_by_name[test_name].type | 195 result = run_results.results_by_name[test_name].type |
| 196 if (result == test_expectations.TIMEOUT or | 196 if (result == test_expectations.TIMEOUT or |
| 197 result == test_expectations.CRASH): | 197 result == test_expectations.CRASH): |
| 198 is_timeout_crash_or_slow = True | 198 is_timeout_crash_or_slow = True |
| 199 timeout_or_crash_tests.append(test_tuple) | 199 timeout_or_crash_tests.append(test_tuple) |
| 200 | 200 |
| 201 if (not is_timeout_crash_or_slow and num_printed < NUM_SLOW_TESTS_TO
_LOG): | 201 if (not is_timeout_crash_or_slow and num_printed < NUM_SLOW_TESTS_TO
_LOG): |
| 202 num_printed = num_printed + 1 | 202 num_printed = num_printed + 1 |
| 203 unexpected_slow_tests.append(test_tuple) | 203 unexpected_slow_tests.append(test_tuple) |
| 204 | 204 |
| 205 self._print_debug("") | 205 self._print_debug("") |
| 206 if unexpected_slow_tests: | 206 if unexpected_slow_tests: |
| 207 self._print_test_list_timing("%s slowest tests that are not marked a
s SLOW and did not timeout/crash:" % | 207 self._print_test_list_timing("%s slowest tests that are not marked a
s SLOW and did not timeout/crash:" % |
| (...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 433 self._meter.write_throttled_update(msg) | 433 self._meter.write_throttled_update(msg) |
| 434 | 434 |
| 435 def write_update(self, msg): | 435 def write_update(self, msg): |
| 436 self._meter.write_update(msg) | 436 self._meter.write_update(msg) |
| 437 | 437 |
| 438 def writeln(self, msg): | 438 def writeln(self, msg): |
| 439 self._meter.writeln(msg) | 439 self._meter.writeln(msg) |
| 440 | 440 |
| 441 def flush(self): | 441 def flush(self): |
| 442 self._meter.flush() | 442 self._meter.flush() |
| OLD | NEW |