Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(85)

Side by Side Diff: build/android/avd.py

Issue 1643003002: Add logging for emulator to debug bot timeout (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | build/android/pylib/utils/emulator.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 2 # Copyright (c) 2013 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 """Launches Android Virtual Devices with a set configuration for testing Chrome. 6 """Launches Android Virtual Devices with a set configuration for testing Chrome.
7 7
8 The script will launch a specified number of Android Virtual Devices (AVD's). 8 The script will launch a specified number of Android Virtual Devices (AVD's).
9 """ 9 """
10 10
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 arguments.emulator_count, 131 arguments.emulator_count,
132 arguments.abi, 132 arguments.abi,
133 arguments.api_level, 133 arguments.api_level,
134 enable_kvm=arguments.enable_kvm, 134 enable_kvm=arguments.enable_kvm,
135 kill_and_launch=arguments.kill_and_launch, 135 kill_and_launch=arguments.kill_and_launch,
136 sdcard_size=arguments.sdcard_size, 136 sdcard_size=arguments.sdcard_size,
137 storage_size=arguments.partition_size, 137 storage_size=arguments.partition_size,
138 wait_for_boot=True, 138 wait_for_boot=True,
139 headless=arguments.headless 139 headless=arguments.headless
140 ) 140 )
141 logging.info('Emulator launch completed')
142 return 0
141 143
142 if __name__ == '__main__': 144 if __name__ == '__main__':
143 sys.exit(main(sys.argv)) 145 sys.exit(main(sys.argv))
OLDNEW
« no previous file with comments | « no previous file | build/android/pylib/utils/emulator.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698