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

Unified Diff: build/android/provision_devices.py

Issue 257743002: Add print of all system properties after provisioning. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove skip_check and add to whitelesit. Created 6 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | build/android/pylib/android_commands.py » ('j') | build/android/pylib/android_commands.py » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/provision_devices.py
diff --git a/build/android/provision_devices.py b/build/android/provision_devices.py
index 3f5ef5a637c4eb84a5e4465dee224e602ca1302a..1faa4d22a8c3942ef0008c20038826e851cda85f 100755
--- a/build/android/provision_devices.py
+++ b/build/android/provision_devices.py
@@ -141,6 +141,9 @@ def ProvisionDevices(options):
device_settings.ConfigureContentSettingsDict(
device, device_settings.NETWORK_DISABLED_SETTINGS)
device.old_interface.RunShellCommandWithSU('date -u %f' % time.time())
+ (_, props) = device.old_interface.GetShellCommandStatusAndOutput('getprop')
+ for prop in props:
+ print prop
if options.auto_reconnect:
PushAndLaunchAdbReboot(devices, options.target)
« no previous file with comments | « no previous file | build/android/pylib/android_commands.py » ('j') | build/android/pylib/android_commands.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698