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

Unified Diff: client/deps/realtimecomm_playground/pgutil.py

Issue 2857032: Small fix in realtimecomm_playground test due to the local of options file has been changed. (Closed) Base URL: ssh://git@chromiumos-git/autotest.git
Patch Set: Update playground files. Created 10 years, 6 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/deps/realtimecomm_playground/GTalkPlayground.tar.gz ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/deps/realtimecomm_playground/pgutil.py
diff --git a/client/deps/realtimecomm_playground/pgutil.py b/client/deps/realtimecomm_playground/pgutil.py
index 0d85877a08a4ec499f7f4de08dc468b8cbc64b95..a0ea5a408bb85f0cb7722de965ac45684a5fe3f4 100644
--- a/client/deps/realtimecomm_playground/pgutil.py
+++ b/client/deps/realtimecomm_playground/pgutil.py
@@ -66,8 +66,8 @@ def setup_playground(src, dst, optionfile):
shutil.copytree(src, dst)
utils.run('chown chronos %s -R' % dst)
- dst_path= '/home/chronos/.Google/'
- opt_path= os.path.join(dst_path, 'Google Talk Plugin')
+ dst_path= '/home/chronos/.config/'
+ opt_path= os.path.join(dst_path, 'google-googletalkplugin')
dst_opt = os.path.join(opt_path, 'options')
utils.run('mkdir -p \'%s\'' % opt_path)
utils.run('cp -f %s \'%s\'' % (optionfile, dst_opt))
@@ -94,3 +94,7 @@ def cleanup_playground(playground, testdone=False):
shutil.rmtree('/home/chronos/.config/chromium', ignore_errors=True)
shutil.rmtree('/home/chronos/.config/google-chrome', ignore_errors=True)
+ # Delete previous GTalk state if any
+ shutil.rmtree('/home/chronos/.config/google-googletalkplugin',
+ ignore_errors=True)
+
« no previous file with comments | « client/deps/realtimecomm_playground/GTalkPlayground.tar.gz ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698