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

Side by Side Diff: recipe_modules/file/examples/copytree.expected/basic.json

Issue 2993713003: Add file.filesizes to recipe engine core modules. (Closed)
Patch Set: -kwargs. Created 3 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 unified diff | Download patch
« no previous file with comments | « recipe_modules/file/examples/copytree.py ('k') | recipe_modules/file/resources/fileutil.py » ('j') | 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 "python", 4 "python",
5 "-u", 5 "-u",
6 "RECIPE_MODULE[recipe_engine::file]/resources/fileutil.py", 6 "RECIPE_MODULE[recipe_engine::file]/resources/fileutil.py",
7 "--json-output", 7 "--json-output",
8 "/path/to/tmp/json", 8 "/path/to/tmp/json",
9 "ensure-directory", 9 "ensure-directory",
10 "--mode", 10 "--mode",
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 "copy", 94 "copy",
95 "cc", 95 "cc",
96 "[START_DIR]/some dir/cc" 96 "[START_DIR]/some dir/cc"
97 ], 97 ],
98 "infra_step": true, 98 "infra_step": true,
99 "name": "write cc" 99 "name": "write cc"
100 }, 100 },
101 { 101 {
102 "cmd": [ 102 "cmd": [
103 "python", 103 "python",
104 "-u",
105 "RECIPE_MODULE[recipe_engine::file]/resources/fileutil.py",
106 "--json-output",
107 "/path/to/tmp/json",
108 "filesizes",
109 "[START_DIR]/some dir/a",
110 "[START_DIR]/some dir/aa",
111 "[START_DIR]/some dir/b",
112 "[START_DIR]/some dir/bb",
113 "[START_DIR]/some dir/c",
114 "[START_DIR]/some dir/cc"
115 ],
116 "infra_step": true,
117 "name": "check filesizes",
118 "stdout": "/path/to/tmp/",
119 "~followup_annotations": [
120 "@@@STEP_LOG_LINE@filesizes@[START_DIR]/some dir/a: \t111@@@",
121 "@@@STEP_LOG_LINE@filesizes@[START_DIR]/some dir/aa: \t221@@@",
122 "@@@STEP_LOG_LINE@filesizes@[START_DIR]/some dir/b: \t333@@@",
123 "@@@STEP_LOG_LINE@filesizes@[START_DIR]/some dir/bb: \t438@@@",
124 "@@@STEP_LOG_LINE@filesizes@[START_DIR]/some dir/c: \t551@@@",
125 "@@@STEP_LOG_LINE@filesizes@[START_DIR]/some dir/cc: \t666@@@",
126 "@@@STEP_LOG_END@filesizes@@@"
127 ]
128 },
129 {
130 "cmd": [
131 "python",
104 "-u", 132 "-u",
105 "RECIPE_MODULE[recipe_engine::file]/resources/fileutil.py", 133 "RECIPE_MODULE[recipe_engine::file]/resources/fileutil.py",
106 "--json-output", 134 "--json-output",
107 "/path/to/tmp/json", 135 "/path/to/tmp/json",
108 "rmtree", 136 "rmtree",
109 "[START_DIR]/some other dir" 137 "[START_DIR]/some other dir"
110 ], 138 ],
111 "infra_step": true, 139 "infra_step": true,
112 "name": "make sure dest is gone" 140 "name": "make sure dest is gone"
113 }, 141 },
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
274 ], 302 ],
275 "infra_step": true, 303 "infra_step": true,
276 "name": "remove \"some other dir/*\"" 304 "name": "remove \"some other dir/*\""
277 }, 305 },
278 { 306 {
279 "name": "$result", 307 "name": "$result",
280 "recipe_result": null, 308 "recipe_result": null,
281 "status_code": 0 309 "status_code": 0
282 } 310 }
283 ] 311 ]
OLDNEW
« no previous file with comments | « recipe_modules/file/examples/copytree.py ('k') | recipe_modules/file/resources/fileutil.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698