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

Side by Side Diff: scripts/slave/recipes/skia/swarm_test.expected/Test-Android-GCC-Nexus7-GPU-Tegra3-Arm7-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 "[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 16 matching lines...) Expand all
301 "PYTHONPATH": "[BUILD]/scripts", 301 "PYTHONPATH": "[BUILD]/scripts",
302 "SKIA_OUT": "[SLAVE_BUILD]/out" 302 "SKIA_OUT": "[SLAVE_BUILD]/out"
303 }, 303 },
304 "name": "read SKP_VERSION", 304 "name": "read SKP_VERSION",
305 "stdout": "/path/to/tmp/" 305 "stdout": "/path/to/tmp/"
306 }, 306 },
307 { 307 {
308 "cmd": [ 308 "cmd": [
309 "python", 309 "python",
310 "-u", 310 "-u",
311 "\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", 311 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
312 "[SLAVE_BUILD]/skia/infra/bots/assets/skimage/VERSION", 312 "[SLAVE_BUILD]/skia/infra/bots/assets/skimage/VERSION",
313 "/path/to/tmp/" 313 "/path/to/tmp/"
314 ], 314 ],
315 "name": "Get downloaded skimage VERSION" 315 "name": "Get downloaded skimage VERSION"
316 }, 316 },
317 { 317 {
318 "cmd": [ 318 "cmd": [
319 "python", 319 "python",
320 "-u", 320 "-u",
321 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", 321 "\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
702 "SKIA_OUT": "[SLAVE_BUILD]/out" 702 "SKIA_OUT": "[SLAVE_BUILD]/out"
703 }, 703 },
704 "name": "kill-server" 704 "name": "kill-server"
705 }, 705 },
706 { 706 {
707 "name": "$result", 707 "name": "$result",
708 "recipe_result": null, 708 "recipe_result": null,
709 "status_code": 0 709 "status_code": 0
710 } 710 }
711 ] 711 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698