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

Side by Side Diff: scripts/slave/recipes/skia/swarm_trigger.expected/Test-Ubuntu-GCC-ShuttleA-GPU-GTX550Ti-x86_64-Release-Valgrind.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 "git", 4 "git",
5 "remote", 5 "remote",
6 "set-url", 6 "set-url",
7 "origin", 7 "origin",
8 "https://skia.googlesource.com/skia.git" 8 "https://skia.googlesource.com/skia.git"
9 ], 9 ],
10 "cwd": "[SLAVE_BUILD]/skia", 10 "cwd": "[SLAVE_BUILD]/skia",
(...skipping 700 matching lines...) Expand 10 before | Expand all | Expand 10 after
711 "@@@STEP_LOG_LINE@json.output@}@@@", 711 "@@@STEP_LOG_LINE@json.output@}@@@",
712 "@@@STEP_LOG_END@json.output@@@", 712 "@@@STEP_LOG_END@json.output@@@",
713 "@@@STEP_LINK@shard #0 isolated out@blah@@@", 713 "@@@STEP_LINK@shard #0 isolated out@blah@@@",
714 "@@@STEP_LINK@view steps on Milo@https://luci-milo.appspot.com/swarming/ta sk/148aa78d7aa0000@@@" 714 "@@@STEP_LINK@view steps on Milo@https://luci-milo.appspot.com/swarming/ta sk/148aa78d7aa0000@@@"
715 ] 715 ]
716 }, 716 },
717 { 717 {
718 "cmd": [ 718 "cmd": [
719 "python", 719 "python",
720 "-u", 720 "-u",
721 "\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", 721 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
722 "[SLAVE_BUILD]/skia/infra/bots/assets/skp/VERSION", 722 "[SLAVE_BUILD]/skia/infra/bots/assets/skp/VERSION",
723 "/path/to/tmp/" 723 "/path/to/tmp/"
724 ], 724 ],
725 "name": "read skp VERSION" 725 "name": "read skp VERSION"
726 }, 726 },
727 { 727 {
728 "cmd": [ 728 "cmd": [
729 "python", 729 "python",
730 "-u", 730 "-u",
731 "\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", 731 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
732 "[SLAVE_BUILD]/skia/infra/bots/assets/skimage/VERSION", 732 "[SLAVE_BUILD]/skia/infra/bots/assets/skimage/VERSION",
733 "/path/to/tmp/" 733 "/path/to/tmp/"
734 ], 734 ],
735 "name": "read skimage VERSION" 735 "name": "read skimage VERSION"
736 }, 736 },
737 { 737 {
738 "cmd": [ 738 "cmd": [
739 "python", 739 "python",
740 "-u", 740 "-u",
741 "\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", 741 "\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",
(...skipping 509 matching lines...) Expand 10 before | Expand all | Expand 10 after
1251 "@@@STEP_LINK@shard #0 isolated out@blah@@@", 1251 "@@@STEP_LINK@shard #0 isolated out@blah@@@",
1252 "@@@STEP_LINK@view steps on Milo@https://luci-milo.appspot.com/swarming/ta sk/148aa78d7aa0000@@@" 1252 "@@@STEP_LINK@view steps on Milo@https://luci-milo.appspot.com/swarming/ta sk/148aa78d7aa0000@@@"
1253 ] 1253 ]
1254 }, 1254 },
1255 { 1255 {
1256 "name": "$result", 1256 "name": "$result",
1257 "recipe_result": null, 1257 "recipe_result": null,
1258 "status_code": 0 1258 "status_code": 0
1259 } 1259 }
1260 ] 1260 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698