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

Side by Side Diff: scripts/slave/recipes/chromium.expected/full_client_v8_fyi_Chromium_Win_SyzyASAN.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 296 matching lines...) Expand 10 before | Expand all | Expand 10 after
307 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" % path@@@", 307 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" % path@@@",
308 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", 308 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@",
309 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@", 309 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@",
310 "@@@STEP_LOG_END@python.inline@@@" 310 "@@@STEP_LOG_END@python.inline@@@"
311 ] 311 ]
312 }, 312 },
313 { 313 {
314 "cmd": [ 314 "cmd": [
315 "python", 315 "python",
316 "-u", 316 "-u",
317 "\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", 317 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
318 "[BUILDER_CACHE]\\Chromium_Win_SyzyASAN\\src\\third_party\\llvm-build\\Rel ease+Asserts\\bin\\llvm-symbolizer.exe", 318 "[BUILDER_CACHE]\\Chromium_Win_SyzyASAN\\src\\third_party\\llvm-build\\Rel ease+Asserts\\bin\\llvm-symbolizer.exe",
319 "[BUILDER_CACHE]\\Chromium_Win_SyzyASAN\\src\\out\\Release" 319 "[BUILDER_CACHE]\\Chromium_Win_SyzyASAN\\src\\out\\Release"
320 ], 320 ],
321 "name": "Copy llvm-symbolizer" 321 "name": "Copy llvm-symbolizer"
322 }, 322 },
323 { 323 {
324 "cmd": [ 324 "cmd": [
325 "python", 325 "python",
326 "-u", 326 "-u",
327 "\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", 327 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
328 "[BUILDER_CACHE]\\Chromium_Win_SyzyASAN\\src\\third_party\\llvm-build\\Rel ease+Asserts\\bin\\sancov.exe", 328 "[BUILDER_CACHE]\\Chromium_Win_SyzyASAN\\src\\third_party\\llvm-build\\Rel ease+Asserts\\bin\\sancov.exe",
329 "[BUILDER_CACHE]\\Chromium_Win_SyzyASAN\\src\\out\\Release" 329 "[BUILDER_CACHE]\\Chromium_Win_SyzyASAN\\src\\out\\Release"
330 ], 330 ],
331 "name": "Copy sancov" 331 "name": "Copy sancov"
332 }, 332 },
333 { 333 {
334 "cmd": [ 334 "cmd": [
335 "python", 335 "python",
336 "-u", 336 "-u",
337 "\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", 337 "\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
403 "@@@STEP_LOG_LINE@python.inline@os.remove(sys.argv[1])@@@", 403 "@@@STEP_LOG_LINE@python.inline@os.remove(sys.argv[1])@@@",
404 "@@@STEP_LOG_END@python.inline@@@" 404 "@@@STEP_LOG_END@python.inline@@@"
405 ] 405 ]
406 }, 406 },
407 { 407 {
408 "name": "$result", 408 "name": "$result",
409 "recipe_result": null, 409 "recipe_result": null,
410 "status_code": 0 410 "status_code": 0
411 } 411 }
412 ] 412 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698