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

Side by Side Diff: scripts/slave/recipes/chromium.expected/full_chromium_lkgr_Win_ASan_Release.json

Issue 2402583003: Revert "Fix file.copy recipe_module to not fail if files are already equal." (Closed)
Patch Set: Created 4 years, 2 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 "python", 4 "python",
5 "-u", 5 "-u",
6 "RECIPE_PACKAGE_REPO[build]\\scripts\\slave\\kill_processes.py" 6 "RECIPE_PACKAGE_REPO[build]\\scripts\\slave\\kill_processes.py"
7 ], 7 ],
8 "name": "taskkill" 8 "name": "taskkill"
9 }, 9 },
10 { 10 {
(...skipping 310 matching lines...) Expand 10 before | Expand all | Expand 10 after
321 "name": "compile", 321 "name": "compile",
322 "~followup_annotations": [ 322 "~followup_annotations": [
323 "@@@STEP_LOG_LINE@json.output (invalid)@null@@@", 323 "@@@STEP_LOG_LINE@json.output (invalid)@null@@@",
324 "@@@STEP_LOG_END@json.output (invalid)@@@" 324 "@@@STEP_LOG_END@json.output (invalid)@@@"
325 ] 325 ]
326 }, 326 },
327 { 327 {
328 "cmd": [ 328 "cmd": [
329 "python", 329 "python",
330 "-u", 330 "-u",
331 "\nimport shutil\nimport sys\n# Apparently, shutil.copy fails if files are binary-equal on *nix OSes.\n# See http://crbug.com/636168#c8.\nif hasattr(shuti l, '_samefile'):\n if shutil._samefile(sys.argv[1], sys.argv[2]):\n sys.exit (0)\nshutil.copy(sys.argv[1], sys.argv[2])\n", 331 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
332 "[BUILDER_CACHE]\\Win_ASan_Release\\src\\third_party\\llvm-build\\Release+ Asserts\\bin\\llvm-symbolizer.exe", 332 "[BUILDER_CACHE]\\Win_ASan_Release\\src\\third_party\\llvm-build\\Release+ Asserts\\bin\\llvm-symbolizer.exe",
333 "[BUILDER_CACHE]\\Win_ASan_Release\\src\\out\\Release" 333 "[BUILDER_CACHE]\\Win_ASan_Release\\src\\out\\Release"
334 ], 334 ],
335 "name": "Copy llvm-symbolizer" 335 "name": "Copy llvm-symbolizer"
336 }, 336 },
337 { 337 {
338 "cmd": [ 338 "cmd": [
339 "python", 339 "python",
340 "-u", 340 "-u",
341 "\nimport shutil\nimport sys\n# Apparently, shutil.copy fails if files are binary-equal on *nix OSes.\n# See http://crbug.com/636168#c8.\nif hasattr(shuti l, '_samefile'):\n if shutil._samefile(sys.argv[1], sys.argv[2]):\n sys.exit (0)\nshutil.copy(sys.argv[1], sys.argv[2])\n", 341 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
342 "[BUILDER_CACHE]\\Win_ASan_Release\\src\\third_party\\llvm-build\\Release+ Asserts\\bin\\sancov.exe", 342 "[BUILDER_CACHE]\\Win_ASan_Release\\src\\third_party\\llvm-build\\Release+ Asserts\\bin\\sancov.exe",
343 "[BUILDER_CACHE]\\Win_ASan_Release\\src\\out\\Release" 343 "[BUILDER_CACHE]\\Win_ASan_Release\\src\\out\\Release"
344 ], 344 ],
345 "name": "Copy sancov" 345 "name": "Copy sancov"
346 }, 346 },
347 { 347 {
348 "cmd": [ 348 "cmd": [
349 "python", 349 "python",
350 "-u", 350 "-u",
351 "\nimport json, os, sys\nif os.path.exists(sys.argv[1]) and os.path.isdir( sys.argv[1]):\n with open(sys.argv[2], 'w') as f:\n json.dump(os.listdir(sys .argv[1]), f)\n", 351 "\nimport json, os, sys\nif os.path.exists(sys.argv[1]) and os.path.isdir( sys.argv[1]):\n with open(sys.argv[2], 'w') as f:\n json.dump(os.listdir(sys .argv[1]), f)\n",
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
417 "@@@STEP_LOG_LINE@python.inline@os.remove(sys.argv[1])@@@", 417 "@@@STEP_LOG_LINE@python.inline@os.remove(sys.argv[1])@@@",
418 "@@@STEP_LOG_END@python.inline@@@" 418 "@@@STEP_LOG_END@python.inline@@@"
419 ] 419 ]
420 }, 420 },
421 { 421 {
422 "name": "$result", 422 "name": "$result",
423 "recipe_result": null, 423 "recipe_result": null,
424 "status_code": 0 424 "status_code": 0
425 } 425 }
426 ] 426 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698