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

Side by Side Diff: scripts/slave/recipes/skia/swarm_perf.expected/Perf-Android-GCC-Nexus7-GPU-Tegra3-Arm7-Release.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 "Perf-Android-GCC-Nexus7-GPU-Tegra3-Arm7-Release" 8 "Perf-Android-GCC-Nexus7-GPU-Tegra3-Arm7-Release"
9 ], 9 ],
10 "cwd": "[SLAVE_BUILD]/skia", 10 "cwd": "[SLAVE_BUILD]/skia",
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after
263 "PYTHONPATH": "[BUILD]/scripts", 263 "PYTHONPATH": "[BUILD]/scripts",
264 "SKIA_ANDROID_VERBOSE_SETUP": "1", 264 "SKIA_ANDROID_VERBOSE_SETUP": "1",
265 "SKIA_OUT": "[SLAVE_BUILD]/out" 265 "SKIA_OUT": "[SLAVE_BUILD]/out"
266 }, 266 },
267 "name": "push resources" 267 "name": "push resources"
268 }, 268 },
269 { 269 {
270 "cmd": [ 270 "cmd": [
271 "python", 271 "python",
272 "-u", 272 "-u",
273 "\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", 273 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
274 "[SLAVE_BUILD]/skia/infra/bots/assets/skp/VERSION", 274 "[SLAVE_BUILD]/skia/infra/bots/assets/skp/VERSION",
275 "/path/to/tmp/" 275 "/path/to/tmp/"
276 ], 276 ],
277 "name": "Get downloaded SKP VERSION" 277 "name": "Get downloaded SKP VERSION"
278 }, 278 },
279 { 279 {
280 "cmd": [ 280 "cmd": [
281 "python", 281 "python",
282 "-u", 282 "-u",
283 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", 283 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
(...skipping 16 matching lines...) Expand all
300 "PYTHONPATH": "[BUILD]/scripts", 300 "PYTHONPATH": "[BUILD]/scripts",
301 "SKIA_OUT": "[SLAVE_BUILD]/out" 301 "SKIA_OUT": "[SLAVE_BUILD]/out"
302 }, 302 },
303 "name": "read SKP_VERSION", 303 "name": "read SKP_VERSION",
304 "stdout": "/path/to/tmp/" 304 "stdout": "/path/to/tmp/"
305 }, 305 },
306 { 306 {
307 "cmd": [ 307 "cmd": [
308 "python", 308 "python",
309 "-u", 309 "-u",
310 "\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", 310 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
311 "[SLAVE_BUILD]/skia/infra/bots/assets/skimage/VERSION", 311 "[SLAVE_BUILD]/skia/infra/bots/assets/skimage/VERSION",
312 "/path/to/tmp/" 312 "/path/to/tmp/"
313 ], 313 ],
314 "name": "Get downloaded skimage VERSION" 314 "name": "Get downloaded skimage VERSION"
315 }, 315 },
316 { 316 {
317 "cmd": [ 317 "cmd": [
318 "python", 318 "python",
319 "-u", 319 "-u",
320 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", 320 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
(...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after
580 "SKIA_OUT": "[SLAVE_BUILD]/out" 580 "SKIA_OUT": "[SLAVE_BUILD]/out"
581 }, 581 },
582 "name": "kill-server" 582 "name": "kill-server"
583 }, 583 },
584 { 584 {
585 "name": "$result", 585 "name": "$result",
586 "recipe_result": null, 586 "recipe_result": null,
587 "status_code": 0 587 "status_code": 0
588 } 588 }
589 ] 589 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698