OLD | NEW |
---|---|
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 import logging | 5 import logging |
6 import os | 6 import os |
7 import posixpath | 7 import posixpath |
8 import re | 8 import re |
9 import time | 9 import time |
10 import tombstones | |
jbudorick
2016/08/08 17:55:25
nit: This shouldn't be with the system imports. Pu
BigBossZhiling
2016/08/08 23:14:54
Done.
| |
10 | 11 |
11 from devil.android import device_errors | 12 from devil.android import device_errors |
12 from devil.android import flag_changer | 13 from devil.android import flag_changer |
13 from devil.utils import reraiser_thread | 14 from devil.utils import reraiser_thread |
14 from pylib import valgrind_tools | 15 from pylib import valgrind_tools |
15 from pylib.base import base_test_result | 16 from pylib.base import base_test_result |
16 from pylib.local.device import local_device_environment | 17 from pylib.local.device import local_device_environment |
17 from pylib.local.device import local_device_test_run | 18 from pylib.local.device import local_device_test_run |
18 | 19 |
19 | 20 |
21 | |
jbudorick
2016/08/08 17:55:25
?
BigBossZhiling
2016/08/08 23:14:54
Done.
| |
20 TIMEOUT_ANNOTATIONS = [ | 22 TIMEOUT_ANNOTATIONS = [ |
21 ('Manual', 10 * 60 * 60), | 23 ('Manual', 10 * 60 * 60), |
22 ('IntegrationTest', 30 * 60), | 24 ('IntegrationTest', 30 * 60), |
23 ('External', 10 * 60), | 25 ('External', 10 * 60), |
24 ('EnormousTest', 10 * 60), | 26 ('EnormousTest', 10 * 60), |
25 ('LargeTest', 5 * 60), | 27 ('LargeTest', 5 * 60), |
26 ('MediumTest', 3 * 60), | 28 ('MediumTest', 3 * 60), |
27 ('SmallTest', 1 * 60), | 29 ('SmallTest', 1 * 60), |
28 ] | 30 ] |
29 | 31 |
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
136 | 138 |
137 valgrind_tools.SetChromeTimeoutScale( | 139 valgrind_tools.SetChromeTimeoutScale( |
138 dev, self._test_instance.timeout_scale) | 140 dev, self._test_instance.timeout_scale) |
139 | 141 |
140 steps = (install_apk, push_test_data, create_flag_changer) | 142 steps = (install_apk, push_test_data, create_flag_changer) |
141 if self._env.concurrent_adb: | 143 if self._env.concurrent_adb: |
142 reraiser_thread.RunAsync(steps) | 144 reraiser_thread.RunAsync(steps) |
143 else: | 145 else: |
144 for step in steps: | 146 for step in steps: |
145 step() | 147 step() |
148 if self._test_instance.store_tombstones: | |
149 tombstones.ClearAllTombstones(dev) | |
146 | 150 |
147 self._env.parallel_devices.pMap( | 151 self._env.parallel_devices.pMap( |
148 individual_device_set_up, | 152 individual_device_set_up, |
149 self._test_instance.GetDataDependencies()) | 153 self._test_instance.GetDataDependencies()) |
150 | 154 |
151 def TearDown(self): | 155 def TearDown(self): |
152 @local_device_environment.handle_shard_failures_with( | 156 @local_device_environment.handle_shard_failures_with( |
153 self._env.BlacklistDevice) | 157 self._env.BlacklistDevice) |
154 def individual_device_tear_down(dev): | 158 def individual_device_tear_down(dev): |
155 if str(dev) in self._flag_changers: | 159 if str(dev) in self._flag_changers: |
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
322 | 326 |
323 else: | 327 else: |
324 logging.debug('raw output from %s:', test_display_name) | 328 logging.debug('raw output from %s:', test_display_name) |
325 for l in output: | 329 for l in output: |
326 logging.debug(' %s', l) | 330 logging.debug(' %s', l) |
327 if self._test_instance.coverage_directory: | 331 if self._test_instance.coverage_directory: |
328 device.PullFile(coverage_directory, | 332 device.PullFile(coverage_directory, |
329 self._test_instance.coverage_directory) | 333 self._test_instance.coverage_directory) |
330 device.RunShellCommand('rm -f %s' % os.path.join(coverage_directory, | 334 device.RunShellCommand('rm -f %s' % os.path.join(coverage_directory, |
331 '*')) | 335 '*')) |
336 if self._test_instance.store_tombstones: | |
337 for result in results: | |
338 if result.GetType() == base_test_result.ResultType.CRASH: | |
339 resolved_tombstones = tombstones.ResolveTombstones( | |
340 device, | |
341 resolve_all_tombstones=True, | |
342 include_stack_symbols=False, | |
343 wipe_tombstones=True) | |
344 result.SetTombstones(resolved_tombstones) | |
332 return results | 345 return results |
333 | 346 |
334 #override | 347 #override |
335 def _ShouldRetry(self, test): | 348 def _ShouldRetry(self, test): |
336 if 'RetryOnFailure' in test.get('annotations', {}): | 349 if 'RetryOnFailure' in test.get('annotations', {}): |
337 return True | 350 return True |
338 | 351 |
339 # TODO(jbudorick): Remove this log message and switch the return value to | 352 # TODO(jbudorick): Remove this log message and switch the return value to |
340 # False after tests have been annotated with @RetryOnFailure. | 353 # False after tests have been annotated with @RetryOnFailure. |
341 # See crbug.com/619055 for more details. | 354 # See crbug.com/619055 for more details. |
(...skipping 19 matching lines...) Expand all Loading... | |
361 timeout = v | 374 timeout = v |
362 break | 375 break |
363 else: | 376 else: |
364 logging.warning('Using default 1 minute timeout for %s', test_name) | 377 logging.warning('Using default 1 minute timeout for %s', test_name) |
365 timeout = 60 | 378 timeout = 60 |
366 | 379 |
367 timeout *= cls._GetTimeoutScaleFromAnnotations(annotations) | 380 timeout *= cls._GetTimeoutScaleFromAnnotations(annotations) |
368 | 381 |
369 return timeout | 382 return timeout |
370 | 383 |
OLD | NEW |