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

Unified Diff: tools/telemetry/telemetry/core/backends/chrome/android_browser_backend.py

Issue 123853002: Bump up timeout for session restore copy. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 12 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/telemetry/telemetry/core/backends/chrome/android_browser_backend.py
diff --git a/tools/telemetry/telemetry/core/backends/chrome/android_browser_backend.py b/tools/telemetry/telemetry/core/backends/chrome/android_browser_backend.py
index 7f8bd66e3d1e3302dd2ebe42d3d37c63a7cf5026..433ae48e2c835873067a6f49252b3b5b5fecf84d 100644
--- a/tools/telemetry/telemetry/core/backends/chrome/android_browser_backend.py
+++ b/tools/telemetry/telemetry/core/backends/chrome/android_browser_backend.py
@@ -83,7 +83,8 @@ class ChromeBackendSettings(AndroidBrowserBackendSettings):
saved_profile_location = '/sdcard/profile/%s' % profile_base
self.adb.Adb().PushIfNeeded(new_profile_dir, saved_profile_location)
self.adb.RunShellCommand('cp -r %s/* %s' % (saved_profile_location,
- self.profile_dir))
+ self.profile_dir),
+ timeout_time = 60)
tonyg 2014/01/05 20:00:03 nit: the style guide doesn't like spaces around =
# We now need to give the ownership back to the browser UID
dumpsys = self.adb.RunShellCommand('dumpsys package %s' % self.package)
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698