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

Side by Side Diff: recipes/example/nested.expected/basic.json

Issue 2322093002: Track step nesting in StreamEngine (Reland). (Closed)
Patch Set: Might as well go deeper. Created 4 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 | « recipes/example/nested.py ('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 { 2 {
3 "cmd": [], 3 "cmd": [],
4 "name": "complicated thing" 4 "name": "complicated thing"
5 }, 5 },
6 { 6 {
7 "cmd": [], 7 "cmd": [],
8 "name": "complicated thing.first part", 8 "name": "complicated thing.first part",
9 "~followup_annotations": [ 9 "~followup_annotations": [
10 "@@@STEP_NEST_LEVEL@1@@@" 10 "@@@STEP_NEST_LEVEL@1@@@"
11 ] 11 ]
12 }, 12 },
13 { 13 {
14 "cmd": [ 14 "cmd": [
15 "sleep", 15 "sleep",
16 "10" 16 "1"
17 ], 17 ],
18 "name": "complicated thing.first part.wait a bit", 18 "name": "complicated thing.first part.wait a bit",
19 "~followup_annotations": [ 19 "~followup_annotations": [
20 "@@@STEP_NEST_LEVEL@2@@@" 20 "@@@STEP_NEST_LEVEL@2@@@"
21 ] 21 ]
22 }, 22 },
23 { 23 {
24 "cmd": [ 24 "cmd": [
25 "echo", 25 "echo",
26 "herpy" 26 "herpy"
27 ], 27 ],
28 "name": "complicated thing.attempt number.one", 28 "name": "complicated thing.attempt number.one",
29 "~followup_annotations": [ 29 "~followup_annotations": [
30 "@@@STEP_NEST_LEVEL@1@@@" 30 "@@@STEP_NEST_LEVEL@1@@@"
31 ] 31 ]
32 }, 32 },
33 { 33 {
34 "cmd": [ 34 "cmd": [
35 "echo", 35 "echo",
36 "derpy" 36 "derpy"
37 ], 37 ],
38 "name": "complicated thing.attempt number.two", 38 "name": "complicated thing.attempt number.two",
39 "~followup_annotations": [ 39 "~followup_annotations": [
40 "@@@STEP_NEST_LEVEL@1@@@" 40 "@@@STEP_NEST_LEVEL@1@@@"
41 ] 41 ]
42 }, 42 },
43 { 43 {
44 "cmd": [],
45 "name": "inherit status"
46 },
47 {
48 "cmd": [],
49 "name": "inherit status.inner step",
50 "~followup_annotations": [
51 "@@@STEP_NEST_LEVEL@1@@@",
52 "@@@STEP_EXCEPTION@@@"
53 ]
54 },
55 {
56 "cmd": [],
57 "name": "versatile status",
58 "~followup_annotations": [
59 "@@@STEP_FAILURE@@@"
60 ]
61 },
62 {
63 "cmd": [],
64 "name": "versatile status.inner step",
65 "~followup_annotations": [
66 "@@@STEP_NEST_LEVEL@1@@@"
67 ]
68 },
69 {
70 "cmd": [],
71 "name": "versatile status.inner step.even deeper",
72 "~followup_annotations": [
73 "@@@STEP_NEST_LEVEL@2@@@"
74 ]
75 },
76 {
44 "cmd": [ 77 "cmd": [
45 "sleep", 78 "sleep",
46 "10" 79 "1"
47 ], 80 ],
48 "name": "simple thing" 81 "name": "simple thing"
49 }, 82 },
50 { 83 {
51 "name": "$result", 84 "name": "$result",
52 "recipe_result": null, 85 "recipe_result": null,
53 "status_code": 0 86 "status_code": 0
54 } 87 }
55 ] 88 ]
OLDNEW
« no previous file with comments | « recipes/example/nested.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698