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

Side by Side Diff: scripts/slave/recipes/chromium_trybot.expected/swarming_deapply_patch.json

Issue 748153002: Use remove_build_metadata.py on all the trybots (take 3). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Update the test expectations Created 6 years, 1 month 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 | Annotate | Revision Log
OLDNEW
1 [ 1 [
2 { 2 {
3 "cmd": [ 3 "cmd": [
4 "python", 4 "python",
5 "-u", 5 "-u",
6 "[BUILD]/scripts/slave/bot_update.py", 6 "[BUILD]/scripts/slave/bot_update.py",
7 "--master", 7 "--master",
8 "tryserver.chromium.linux", 8 "tryserver.chromium.linux",
9 "--builder", 9 "--builder",
10 "linux_chromium_rel", 10 "linux_chromium_rel",
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after
214 "base_unittests_run", 214 "base_unittests_run",
215 "browser_tests", 215 "browser_tests",
216 "browser_tests_run" 216 "browser_tests_run"
217 ], 217 ],
218 "name": "compile (with patch)" 218 "name": "compile (with patch)"
219 }, 219 },
220 { 220 {
221 "cmd": [ 221 "cmd": [
222 "python", 222 "python",
223 "-u", 223 "-u",
224 "[BUILD]/scripts/slave/recipe_modules/isolate/resources/remove_build_metad ata.py",
225 "--build-dir",
226 "[SLAVE_BUILD]/src/out/Release",
227 "--src-dir",
228 "[SLAVE_BUILD]/src"
229 ],
230 "cwd": "[SLAVE_BUILD]",
231 "name": "remove_build_metadata"
232 },
233 {
234 "cmd": [
235 "python",
236 "-u",
224 "\nimport glob\nimport sys\nwith open(sys.argv[1], 'w') as f:\n f.write(' \\n'.join(glob.glob(sys.argv[2])))\n", 237 "\nimport glob\nimport sys\nwith open(sys.argv[1], 'w') as f:\n f.write(' \\n'.join(glob.glob(sys.argv[2])))\n",
225 "/path/to/tmp/", 238 "/path/to/tmp/",
226 "[SLAVE_BUILD]/src/out/Release/*.isolated.gen.json" 239 "[SLAVE_BUILD]/src/out/Release/*.isolated.gen.json"
227 ], 240 ],
228 "name": "find isolated targets" 241 "name": "find isolated targets"
229 }, 242 },
230 { 243 {
231 "cmd": [ 244 "cmd": [
232 "python", 245 "python",
233 "-u", 246 "-u",
(...skipping 616 matching lines...) Expand 10 before | Expand all | Expand 10 after
850 "@@@STEP_LOG_LINE@python.inline@ print 'Ignored failures:'@@@", 863 "@@@STEP_LOG_LINE@python.inline@ print 'Ignored failures:'@@@",
851 "@@@STEP_LOG_LINE@python.inline@ for f in failures['ignored']:@@@", 864 "@@@STEP_LOG_LINE@python.inline@ for f in failures['ignored']:@@@",
852 "@@@STEP_LOG_LINE@python.inline@ print f@@@", 865 "@@@STEP_LOG_LINE@python.inline@ print f@@@",
853 "@@@STEP_LOG_LINE@python.inline@@@@", 866 "@@@STEP_LOG_LINE@python.inline@@@@",
854 "@@@STEP_LOG_LINE@python.inline@sys.exit(0 if success else 1)@@@", 867 "@@@STEP_LOG_LINE@python.inline@sys.exit(0 if success else 1)@@@",
855 "@@@STEP_LOG_END@python.inline@@@", 868 "@@@STEP_LOG_END@python.inline@@@",
856 "@@@STEP_FAILURE@@@" 869 "@@@STEP_FAILURE@@@"
857 ] 870 ]
858 } 871 }
859 ] 872 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698