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

Unified Diff: build/android/pylib/device/device_utils.py

Issue 1317453004: [Android] Fix date setting + su on M. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 4 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 | « build/android/provision_devices.py ('k') | build/android/pylib/device/device_utils_test.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/pylib/device/device_utils.py
diff --git a/build/android/pylib/device/device_utils.py b/build/android/pylib/device/device_utils.py
index 0ba057035c1cefe2955fb32ed670983a30bfdf96..b3112d66a2a97729805eab0d927a1b7305017f66 100644
--- a/build/android/pylib/device/device_utils.py
+++ b/build/android/pylib/device/device_utils.py
@@ -277,7 +277,7 @@ class DeviceUtils(object):
if 'needs_su' not in self._cache:
try:
self.RunShellCommand(
- 'su -c ls /root && ! ls /root', check_return=True,
+ '%s && ! ls /root' % self._Su('ls /root'), check_return=True,
timeout=self._default_timeout if timeout is DEFAULT else timeout,
retries=self._default_retries if retries is DEFAULT else retries)
self._cache['needs_su'] = True
@@ -285,6 +285,11 @@ class DeviceUtils(object):
self._cache['needs_su'] = False
return self._cache['needs_su']
+ def _Su(self, command):
+ if (self.build_version_sdk
+ >= constants.ANDROID_SDK_VERSION_CODES.MARSHMALLOW):
+ return 'su 0 %s' % command
+ return 'su -c %s' % command
@decorators.WithTimeoutAndRetriesFromInstance()
def EnableRoot(self, timeout=None, retries=None):
@@ -724,7 +729,7 @@ class DeviceUtils(object):
cmd = 'cd %s && %s' % (cmd_helper.SingleQuote(cwd), cmd)
if as_root and self.NeedsSU():
# "su -c sh -c" allows using shell features in |cmd|
- cmd = 'su -c sh -c %s' % cmd_helper.SingleQuote(cmd)
+ cmd = self._Su('sh -c %s' % cmd_helper.SingleQuote(cmd))
output = handle_large_output(cmd, large_output).splitlines()
« no previous file with comments | « build/android/provision_devices.py ('k') | build/android/pylib/device/device_utils_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698