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

Side by Side Diff: scripts/slave/recipes/chromium.expected/full_client_v8_fyi_Chromium_ASAN___debug.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 "\nimport sys, os\npath = sys.argv[1]\nmode = int(sys.argv[2])\nif not os. path.isdir(path):\n if os.path.exists(path):\n print \"%s exists but is not a dir\" % path\n sys.exit(1)\n os.makedirs(path, mode)\n", 6 "\nimport sys, os\npath = sys.argv[1]\nmode = int(sys.argv[2])\nif not os. path.isdir(path):\n if os.path.exists(path):\n print \"%s exists but is not a dir\" % path\n sys.exit(1)\n os.makedirs(path, mode)\n",
7 "[BUILDER_CACHE]/Chromium_ASAN___debug", 7 "[BUILDER_CACHE]/Chromium_ASAN___debug",
8 "511" 8 "511"
9 ], 9 ],
10 "name": "makedirs checkout path", 10 "name": "makedirs checkout path",
(...skipping 342 matching lines...) Expand 10 before | Expand all | Expand 10 after
353 "name": "compile", 353 "name": "compile",
354 "~followup_annotations": [ 354 "~followup_annotations": [
355 "@@@STEP_LOG_LINE@json.output (invalid)@null@@@", 355 "@@@STEP_LOG_LINE@json.output (invalid)@null@@@",
356 "@@@STEP_LOG_END@json.output (invalid)@@@" 356 "@@@STEP_LOG_END@json.output (invalid)@@@"
357 ] 357 ]
358 }, 358 },
359 { 359 {
360 "cmd": [ 360 "cmd": [
361 "python", 361 "python",
362 "-u", 362 "-u",
363 "\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", 363 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
364 "[BUILDER_CACHE]/Chromium_ASAN___debug/src/third_party/llvm-build/Release+ Asserts/bin/llvm-symbolizer", 364 "[BUILDER_CACHE]/Chromium_ASAN___debug/src/third_party/llvm-build/Release+ Asserts/bin/llvm-symbolizer",
365 "[BUILDER_CACHE]/Chromium_ASAN___debug/src/out/Debug" 365 "[BUILDER_CACHE]/Chromium_ASAN___debug/src/out/Debug"
366 ], 366 ],
367 "name": "Copy llvm-symbolizer" 367 "name": "Copy llvm-symbolizer"
368 }, 368 },
369 { 369 {
370 "cmd": [ 370 "cmd": [
371 "python", 371 "python",
372 "-u", 372 "-u",
373 "\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", 373 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
374 "[BUILDER_CACHE]/Chromium_ASAN___debug/src/third_party/llvm-build/Release+ Asserts/bin/sancov", 374 "[BUILDER_CACHE]/Chromium_ASAN___debug/src/third_party/llvm-build/Release+ Asserts/bin/sancov",
375 "[BUILDER_CACHE]/Chromium_ASAN___debug/src/out/Debug" 375 "[BUILDER_CACHE]/Chromium_ASAN___debug/src/out/Debug"
376 ], 376 ],
377 "name": "Copy sancov" 377 "name": "Copy sancov"
378 }, 378 },
379 { 379 {
380 "cmd": [ 380 "cmd": [
381 "python", 381 "python",
382 "-u", 382 "-u",
383 "\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", 383 "\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
449 "@@@STEP_LOG_LINE@python.inline@os.remove(sys.argv[1])@@@", 449 "@@@STEP_LOG_LINE@python.inline@os.remove(sys.argv[1])@@@",
450 "@@@STEP_LOG_END@python.inline@@@" 450 "@@@STEP_LOG_END@python.inline@@@"
451 ] 451 ]
452 }, 452 },
453 { 453 {
454 "name": "$result", 454 "name": "$result",
455 "recipe_result": null, 455 "recipe_result": null,
456 "status_code": 0 456 "status_code": 0
457 } 457 }
458 ] 458 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698