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

Unified Diff: build/android/pylib/utils/test_environment.py

Issue 99713002: Factor out a system_properties interface for interacting with getprop/setprop. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Use shlex.split() Created 7 years 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
Index: build/android/pylib/utils/test_environment.py
diff --git a/build/android/pylib/utils/test_environment.py b/build/android/pylib/utils/test_environment.py
index ccfa2d0221f4bdc4bc52eb02428277bd767d03f4..279bc4a135c6acb043712a4c3d37425029ebaf13 100644
--- a/build/android/pylib/utils/test_environment.py
+++ b/build/android/pylib/utils/test_environment.py
@@ -25,7 +25,7 @@ def CleanupLeftoverProcesses():
_KillWebServers()
did_restart_host_adb = False
for device in android_commands.GetAttachedDevices():
- adb = android_commands.AndroidCommands(device)
+ adb = android_commands.AndroidCommands(device, api_strict_mode=True)
# Make sure we restart the host adb server only once.
if not did_restart_host_adb:
adb.RestartAdbServer()

Powered by Google App Engine
This is Rietveld 408576698