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

Side by Side Diff: scripts/slave/recipes/skia/swarm_test.expected/adb_in_path.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 249 matching lines...) Expand 10 before | Expand all | Expand 10 after
260 "PYTHONPATH": "[BUILD]/scripts", 260 "PYTHONPATH": "[BUILD]/scripts",
261 "SKIA_ANDROID_VERBOSE_SETUP": "1", 261 "SKIA_ANDROID_VERBOSE_SETUP": "1",
262 "SKIA_OUT": "[SLAVE_BUILD]/out" 262 "SKIA_OUT": "[SLAVE_BUILD]/out"
263 }, 263 },
264 "name": "push resources" 264 "name": "push resources"
265 }, 265 },
266 { 266 {
267 "cmd": [ 267 "cmd": [
268 "python", 268 "python",
269 "-u", 269 "-u",
270 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", 270 "\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",
271 "[SLAVE_BUILD]/skia/infra/bots/assets/skp/VERSION", 271 "[SLAVE_BUILD]/skia/infra/bots/assets/skp/VERSION",
272 "/path/to/tmp/" 272 "/path/to/tmp/"
273 ], 273 ],
274 "name": "Get downloaded SKP VERSION" 274 "name": "Get downloaded SKP VERSION"
275 }, 275 },
276 { 276 {
277 "cmd": [ 277 "cmd": [
278 "python", 278 "python",
279 "-u", 279 "-u",
280 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", 280 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
(...skipping 16 matching lines...) Expand all
297 "PYTHONPATH": "[BUILD]/scripts", 297 "PYTHONPATH": "[BUILD]/scripts",
298 "SKIA_OUT": "[SLAVE_BUILD]/out" 298 "SKIA_OUT": "[SLAVE_BUILD]/out"
299 }, 299 },
300 "name": "read SKP_VERSION", 300 "name": "read SKP_VERSION",
301 "stdout": "/path/to/tmp/" 301 "stdout": "/path/to/tmp/"
302 }, 302 },
303 { 303 {
304 "cmd": [ 304 "cmd": [
305 "python", 305 "python",
306 "-u", 306 "-u",
307 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", 307 "\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",
308 "[SLAVE_BUILD]/skia/infra/bots/assets/skimage/VERSION", 308 "[SLAVE_BUILD]/skia/infra/bots/assets/skimage/VERSION",
309 "/path/to/tmp/" 309 "/path/to/tmp/"
310 ], 310 ],
311 "name": "Get downloaded skimage VERSION" 311 "name": "Get downloaded skimage VERSION"
312 }, 312 },
313 { 313 {
314 "cmd": [ 314 "cmd": [
315 "python", 315 "python",
316 "-u", 316 "-u",
317 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", 317 "\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
698 "SKIA_OUT": "[SLAVE_BUILD]/out" 698 "SKIA_OUT": "[SLAVE_BUILD]/out"
699 }, 699 },
700 "name": "kill-server" 700 "name": "kill-server"
701 }, 701 },
702 { 702 {
703 "name": "$result", 703 "name": "$result",
704 "recipe_result": null, 704 "recipe_result": null,
705 "status_code": 0 705 "status_code": 0
706 } 706 }
707 ] 707 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698