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

Unified Diff: build/android/provision_devices.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 | « no previous file | build/android/pylib/device/device_utils.py » ('j') | no next file with comments »
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 36d4df96aeb3626d5291d8a5faac47efe4ee3954..6ecffca1bf2dd941bc245fa1fd9d6684adf89828 100755
--- a/build/android/provision_devices.py
+++ b/build/android/provision_devices.py
@@ -299,18 +299,25 @@ def FinishProvisioning(device, options):
logging.exception('Unable to let battery cool to specified temperature.')
def _set_and_verify_date():
- strgmtime = time.strftime('%Y%m%d.%H%M%S', time.gmtime())
- device.RunShellCommand(['date', '-s', strgmtime], as_root=True,
- check_return=True)
+ if (device.build_version_sdk
+ >= constants.ANDROID_SDK_VERSION_CODES.MARSHMALLOW):
+ date_format = '%m%d%H%M%Y.%S'
+ set_date_command = ['date']
+ else:
+ date_format = '%Y%m%d.%H%M%S'
+ set_date_command = ['date', '-s']
+ strgmtime = time.strftime(date_format, time.gmtime())
+ set_date_command.append(strgmtime)
+ device.RunShellCommand(set_date_command, as_root=True, check_return=True)
device_time = device.RunShellCommand(
- ['date', '+"%Y%m%d.%H%M%S"'], as_root=True,
- single_line=True).replace('"', '')
- correct_time = datetime.datetime.strptime(strgmtime,"%Y%m%d.%H%M%S")
- tdelta = (correct_time - datetime.datetime.strptime(device_time,
- "%Y%m%d.%H%M%S")).seconds
+ ['date', '+"%Y%m%d.%H%M%S"'], as_root=True,
+ single_line=True).replace('"', '')
+ device_time = datetime.datetime.strptime(device_time, "%Y%m%d.%H%M%S")
+ correct_time = datetime.datetime.strptime(strgmtime, date_format)
+ tdelta = (correct_time - device_time).seconds
if tdelta <= 1:
- logging.info('Date/time successfully set on %s' % device)
+ logging.info('Date/time successfully set on %s', device)
return True
else:
return False
@@ -318,8 +325,8 @@ def FinishProvisioning(device, options):
# Sometimes the date is not set correctly on the devices. Retry on failure.
if not timeout_retry.WaitFor(_set_and_verify_date, wait_period=1,
max_tries=2):
- logging.warning('Error setting time on device %s.', device)
- device_blacklist.ExtendBlacklist([str(device)])
+ raise device_errors.CommandFailedError(
+ 'Failed to set date & time.', device_serial=str(device))
props = device.RunShellCommand('getprop', check_return=True)
for prop in props:
« no previous file with comments | « no previous file | build/android/pylib/device/device_utils.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698