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

Unified Diff: build/android/pylib/base_test_runner.py

Issue 10867008: Get rid of device/host clock synchronization in android_commands.py. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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
Index: build/android/pylib/base_test_runner.py
diff --git a/build/android/pylib/base_test_runner.py b/build/android/pylib/base_test_runner.py
index efed5347f2b14d14239311bb9b71156cf8647e1f..867e2c13290c681c6b62842b5e3dfd502d54d2c3 100644
--- a/build/android/pylib/base_test_runner.py
+++ b/build/android/pylib/base_test_runner.py
@@ -41,11 +41,6 @@ class BaseTestRunner(object):
self.device = device
self.adb = android_commands.AndroidCommands(device=device)
self.tool = CreateTool(tool, self.adb)
- # Synchronize date/time between host and device. Otherwise same file on
- # host and device may have different timestamp which may cause
- # AndroidCommands.PushIfNeeded failed, or a test which may compare timestamp
- # got from http head and local time could be failed.
- self.adb.SynchronizeDateTime()
self._http_server = None
self._forwarder = None
self._forwarder_device_port = 8000

Powered by Google App Engine
This is Rietveld 408576698