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

Unified Diff: client/bin/site_ui_test.py

Issue 3234004: [autotest] Fix chrome log collection (Closed) Base URL: http://git.chromium.org/git/autotest.git
Patch Set: Created 10 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 | « client/bin/chromeos_constants.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/bin/site_ui_test.py
diff --git a/client/bin/site_ui_test.py b/client/bin/site_ui_test.py
index a101d9ff85976d0856b8a88b0f0f927ae70d79c7..83c156ae2b5fc0634b1fcabd8d62c088f16101b3 100644
--- a/client/bin/site_ui_test.py
+++ b/client/bin/site_ui_test.py
@@ -240,14 +240,14 @@ class UITest(bin_test.test):
"""Overridden from test.cleanup() to log out when the test is complete.
"""
try:
- shutil.copy(chromeos_constants.USER_DATA_DIR+'/chrome_log',
+ shutil.copy(chromeos_constants.CHROME_LOG_DIR+'/chrome',
self.resultsdir+'/chrome_prelogin_log')
except (IOError, OSError) as error:
logging.error(error)
if site_login.logged_in():
try:
- shutil.copy(chromeos_constants.USER_DATA_DIR+'/user/chrome_log',
+ shutil.copy(chromeos_constants.CRYPTOHOME_MOUNT_PT+'/chrome',
self.resultsdir+'/chrome_postlogin_log')
except (IOError, OSError) as error:
logging.error(error)
« no previous file with comments | « client/bin/chromeos_constants.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698