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

Side by Side Diff: scripts/slave/recipes/skia/swarm_test.expected/missing_SKP_VERSION_device.json

Issue 2400963002: Fix file.copy recipe_module to not fail if files are already equal. (Closed)
Patch Set: all expectations, omg! 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\nshutil.copy(sys.argv[1], sys.argv[2])\n", 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",
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 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
415 "GYP_DEFINES": "skia_arch_type=arm skia_warnings_as_errors=0", 415 "GYP_DEFINES": "skia_arch_type=arm skia_warnings_as_errors=0",
416 "PYTHONPATH": "[BUILD]/scripts", 416 "PYTHONPATH": "[BUILD]/scripts",
417 "SKIA_OUT": "[SLAVE_BUILD]/out" 417 "SKIA_OUT": "[SLAVE_BUILD]/out"
418 }, 418 },
419 "name": "push SKP_VERSION" 419 "name": "push SKP_VERSION"
420 }, 420 },
421 { 421 {
422 "cmd": [ 422 "cmd": [
423 "python", 423 "python",
424 "-u", 424 "-u",
425 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", 425 "\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",
426 "[SLAVE_BUILD]/skia/infra/bots/assets/skimage/VERSION", 426 "[SLAVE_BUILD]/skia/infra/bots/assets/skimage/VERSION",
427 "/path/to/tmp/" 427 "/path/to/tmp/"
428 ], 428 ],
429 "name": "Get downloaded skimage VERSION" 429 "name": "Get downloaded skimage VERSION"
430 }, 430 },
431 { 431 {
432 "cmd": [ 432 "cmd": [
433 "python", 433 "python",
434 "-u", 434 "-u",
435 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", 435 "\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
816 "SKIA_OUT": "[SLAVE_BUILD]/out" 816 "SKIA_OUT": "[SLAVE_BUILD]/out"
817 }, 817 },
818 "name": "kill-server" 818 "name": "kill-server"
819 }, 819 },
820 { 820 {
821 "name": "$result", 821 "name": "$result",
822 "recipe_result": null, 822 "recipe_result": null,
823 "status_code": 0 823 "status_code": 0
824 } 824 }
825 ] 825 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698