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

Side by Side Diff: scripts/slave/recipes/skia/swarm_test.expected/download_and_push_skps.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 "[SLAVE_BUILD]/skia/tools/buildbot_spec.py", 6 "[SLAVE_BUILD]/skia/tools/buildbot_spec.py",
7 "/path/to/tmp/json", 7 "/path/to/tmp/json",
8 "Test-Android-GCC-Nexus7-GPU-Tegra3-Arm7-Debug" 8 "Test-Android-GCC-Nexus7-GPU-Tegra3-Arm7-Debug"
9 ], 9 ],
10 "cwd": "[SLAVE_BUILD]/skia", 10 "cwd": "[SLAVE_BUILD]/skia",
(...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after
264 "PYTHONPATH": "[BUILD]/scripts", 264 "PYTHONPATH": "[BUILD]/scripts",
265 "SKIA_ANDROID_VERBOSE_SETUP": "1", 265 "SKIA_ANDROID_VERBOSE_SETUP": "1",
266 "SKIA_OUT": "[SLAVE_BUILD]/out" 266 "SKIA_OUT": "[SLAVE_BUILD]/out"
267 }, 267 },
268 "name": "push resources" 268 "name": "push resources"
269 }, 269 },
270 { 270 {
271 "cmd": [ 271 "cmd": [
272 "python", 272 "python",
273 "-u", 273 "-u",
274 "\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", 274 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
275 "[SLAVE_BUILD]/skia/infra/bots/assets/skp/VERSION", 275 "[SLAVE_BUILD]/skia/infra/bots/assets/skp/VERSION",
276 "/path/to/tmp/" 276 "/path/to/tmp/"
277 ], 277 ],
278 "name": "Get downloaded SKP VERSION" 278 "name": "Get downloaded SKP VERSION"
279 }, 279 },
280 { 280 {
281 "cmd": [ 281 "cmd": [
282 "python", 282 "python",
283 "-u", 283 "-u",
284 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", 284 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
411 "GYP_DEFINES": "skia_arch_type=arm skia_warnings_as_errors=0", 411 "GYP_DEFINES": "skia_arch_type=arm skia_warnings_as_errors=0",
412 "PYTHONPATH": "[BUILD]/scripts", 412 "PYTHONPATH": "[BUILD]/scripts",
413 "SKIA_OUT": "[SLAVE_BUILD]/out" 413 "SKIA_OUT": "[SLAVE_BUILD]/out"
414 }, 414 },
415 "name": "push SKP_VERSION" 415 "name": "push SKP_VERSION"
416 }, 416 },
417 { 417 {
418 "cmd": [ 418 "cmd": [
419 "python", 419 "python",
420 "-u", 420 "-u",
421 "\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", 421 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
422 "[SLAVE_BUILD]/skia/infra/bots/assets/skimage/VERSION", 422 "[SLAVE_BUILD]/skia/infra/bots/assets/skimage/VERSION",
423 "/path/to/tmp/" 423 "/path/to/tmp/"
424 ], 424 ],
425 "name": "Get downloaded skimage VERSION" 425 "name": "Get downloaded skimage VERSION"
426 }, 426 },
427 { 427 {
428 "cmd": [ 428 "cmd": [
429 "python", 429 "python",
430 "-u", 430 "-u",
431 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", 431 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
(...skipping 380 matching lines...) Expand 10 before | Expand all | Expand 10 after
812 "SKIA_OUT": "[SLAVE_BUILD]/out" 812 "SKIA_OUT": "[SLAVE_BUILD]/out"
813 }, 813 },
814 "name": "kill-server" 814 "name": "kill-server"
815 }, 815 },
816 { 816 {
817 "name": "$result", 817 "name": "$result",
818 "recipe_result": null, 818 "recipe_result": null,
819 "status_code": 0 819 "status_code": 0
820 } 820 }
821 ] 821 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698