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

Side by Side Diff: chrome/test/mini_installer/config/config.config

Issue 24007002: Add a test for installing Chrome at system level. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Address robertshield's comment. Created 7 years, 3 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 unified diff | Download patch
« no previous file with comments | « chrome/test/mini_installer/config/chrome_user_not_inuse.prop ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 "states": [ 2 "states": [
3 ["clean", ["chrome_not_installed.prop", "chrome_not_inuse.prop"]], 3 ["clean", ["chrome_user_not_installed.prop",
4 ["chrome_installed_not_inuse", ["chrome_installed.prop", 4 "chrome_system_not_installed.prop",
5 "chrome_not_inuse.prop"]], 5 "chrome_user_not_inuse.prop",
6 ["chrome_installed_inuse", ["chrome_installed.prop", "chrome_inuse.prop"]] 6 "chrome_system_not_inuse.prop"]],
7 ["chrome_user_installed_not_inuse", ["chrome_user_installed.prop",
8 "chrome_system_not_installed.prop",
9 "chrome_user_not_inuse.prop",
10 "chrome_system_not_inuse.prop"]],
11 ["chrome_system_installed_not_inuse", ["chrome_user_not_installed.prop",
12 "chrome_system_installed.prop",
13 "chrome_user_not_inuse.prop",
14 "chrome_system_not_inuse.prop"]],
15 ["chrome_user_installed_inuse", ["chrome_user_installed.prop",
16 "chrome_system_not_installed.prop",
17 "chrome_user_inuse.prop",
18 "chrome_system_not_inuse.prop"]],
19 ["chrome_system_installed_inuse", ["chrome_user_not_installed.prop",
20 "chrome_system_installed.prop",
21 "chrome_user_not_inuse.prop",
22 "chrome_system_inuse.prop"]]
7 ], 23 ],
8 "actions": [ 24 "actions": [
9 ["install_chrome_at_user_level", 25 ["install_chrome_user",
10 "\"$MINI_INSTALLER\" --chrome --multi-install --do-not-launch-chrome"], 26 "\"$MINI_INSTALLER\" --chrome --multi-install --do-not-launch-chrome"],
11 ["launch_chrome_at_user_level", 27 ["install_chrome_system",
12 "python launch_chrome.py \"$LOCAL_APPDATA\\$CHROME_DIR\\Application\\chr ome.exe\""], 28 "\"$MINI_INSTALLER\" --chrome --multi-install --system-level --do-not-launc h-chrome"],
13 ["quit_chrome_at_user_level", 29 ["launch_chrome_user",
14 "python quit_chrome.py \"$LOCAL_APPDATA\\$CHROME_DIR\\Application\\chrom e.exe\""], 30 "python launch_chrome.py \"$LOCAL_APPDATA\\$CHROME_DIR\\Application\\chrome .exe\""],
15 ["uninstall_chrome", 31 ["launch_chrome_system",
16 "python uninstall_chrome.py --chrome-long-name=\"$CHROME_LONG_NAME\""] 32 "python launch_chrome.py \"$PROGRAM_FILES\\$CHROME_DIR\\Application\\chrome .exe\""],
33 ["quit_chrome_user",
34 "python quit_chrome.py \"$LOCAL_APPDATA\\$CHROME_DIR\\Application\\chrome.e xe\""],
35 ["quit_chrome_system",
36 "python quit_chrome.py \"$PROGRAM_FILES\\$CHROME_DIR\\Application\\chrome.e xe\""],
37 ["uninstall_chrome_user",
38 "python uninstall_chrome.py --chrome-long-name=\"$CHROME_LONG_NAME\""],
39 ["uninstall_chrome_system",
40 "python uninstall_chrome.py --chrome-long-name=\"$CHROME_LONG_NAME\" --syst em-level"]
17 ], 41 ],
18 "tests": [ 42 "tests": [
19 ["clean", 43 [
gab 2013/09/06 18:02:20 This makes me think it would be great to be able t
20 "install_chrome_at_user_level", "chrome_installed_not_inuse", 44 "clean",
21 "launch_chrome_at_user_level", "chrome_installed_inuse", 45 "install_chrome_user", "chrome_user_installed_not_inuse",
22 "quit_chrome_at_user_level", "chrome_installed_not_inuse", 46 "launch_chrome_user", "chrome_user_installed_inuse",
23 "uninstall_chrome", "clean"] 47 "quit_chrome_user", "chrome_user_installed_not_inuse",
48 "uninstall_chrome_user", "clean"
49 ],
50 [
51 "clean",
52 "install_chrome_system", "chrome_system_installed_not_inuse",
53 "launch_chrome_system", "chrome_system_installed_inuse",
54 "quit_chrome_system", "chrome_system_installed_not_inuse",
55 "uninstall_chrome_system", "clean"
56 ]
24 ] 57 ]
25 } 58 }
OLDNEW
« no previous file with comments | « chrome/test/mini_installer/config/chrome_user_not_inuse.prop ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698