Chromium Code Reviews| Index: scripts/slave/recipe_modules/chromium_android/example.py |
| diff --git a/scripts/slave/recipe_modules/chromium_android/example.py b/scripts/slave/recipe_modules/chromium_android/example.py |
| index ced6700e3a6c5031318f9ef6c39449ee1297cb49..7d768ed40350d5ba81d6c2752acee3913db31025 100644 |
| --- a/scripts/slave/recipe_modules/chromium_android/example.py |
| +++ b/scripts/slave/recipe_modules/chromium_android/example.py |
| @@ -181,8 +181,10 @@ def RunSteps(api, buildername): |
| if not failure: |
| api.chromium_android.run_bisect_script(extra_src='test.py', |
| path_to_config='test.py') |
| - api.chromium_android.logcat_dump() |
| - api.chromium_android.stack_tool_steps() |
| + |
| + logcat_file = api.chromium.output_dir.join('full_logcat') |
| + api.chromium_android.logcat_dump(output_logcat_file=logcat_file) |
|
luqui
2015/11/23 22:59:40
Heck as long as you're here you might as well use
mikecase (-- gone --)
2015/11/24 20:50:59
Added an example of using the logcat context manag
|
| + api.chromium_android.stack_tool_steps(logcat_file=logcat_file) |
| if config.get('coverage', False): |
| api.chromium_android.coverage_report() |