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

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 extra call to getprop. 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 6dc320ad2c5fde1a5e80deacbfd2d3397a0f9da1..e80d2af76bc8ea089eedeb33c4a2a53242f56c77 100755
--- a/build/android/provision_devices.py
+++ b/build/android/provision_devices.py
@@ -140,6 +140,11 @@ 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',
+ skip_check='True')
+ 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