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

Side by Side Diff: recipe_modules/step/examples/full.expected/exceptional.json

Issue 2913203002: [step_runner] run _merge_envs in simulation too. (Closed)
Patch Set: quotes and comments Created 3 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 unified diff | Download patch
OLDNEW
1 [ 1 [
2 { 2 {
3 "cmd": [ 3 "cmd": [
4 "echo", 4 "echo",
5 "Hello World" 5 "Hello World"
6 ], 6 ],
7 "name": "hello" 7 "name": "hello"
8 }, 8 },
9 { 9 {
10 "cmd": [ 10 "cmd": [
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 "friend": "Darth Vader" 48 "friend": "Darth Vader"
49 }, 49 },
50 "name": "goodbye" 50 "name": "goodbye"
51 }, 51 },
52 { 52 {
53 "cmd": [ 53 "cmd": [
54 "recipes.py", 54 "recipes.py",
55 "--help" 55 "--help"
56 ], 56 ],
57 "env": { 57 "env": {
58 "PATH": "RECIPE_PACKAGE_REPO[recipe_engine]:%(PATH)s" 58 "PATH": "RECIPE_PACKAGE_REPO[recipe_engine]:<PATH>"
59 }, 59 },
60 "name": "recipes help" 60 "name": "recipes help"
61 }, 61 },
62 { 62 {
63 "cmd": [ 63 "cmd": [
64 "bash", 64 "bash",
65 "-c", 65 "-c",
66 "exit 3" 66 "exit 3"
67 ], 67 ],
68 "name": "anything is cool" 68 "name": "anything is cool"
(...skipping 29 matching lines...) Expand all
98 "step returned non-zero exit code: 1", 98 "step returned non-zero exit code: 1",
99 "@@@STEP_FAILURE@@@" 99 "@@@STEP_FAILURE@@@"
100 ] 100 ]
101 }, 101 },
102 { 102 {
103 "name": "$result", 103 "name": "$result",
104 "reason": "Uncaught Exception: ValueError('goodbye must exit 0!',)", 104 "reason": "Uncaught Exception: ValueError('goodbye must exit 0!',)",
105 "status_code": -1 105 "status_code": -1
106 } 106 }
107 ] 107 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698