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

Side by Side Diff: scripts/slave/recipes/skia/swarm_test.expected/Test-Android-GCC-GalaxyS3-GPU-Mali400-Arm7-Debug.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-GalaxyS3-GPU-Mali400-Arm7-Debug" 8 "Test-Android-GCC-GalaxyS3-GPU-Mali400-Arm7-Debug"
9 ], 9 ],
10 "cwd": "[SLAVE_BUILD]/skia", 10 "cwd": "[SLAVE_BUILD]/skia",
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 "PYTHONPATH": "[BUILD]/scripts", 156 "PYTHONPATH": "[BUILD]/scripts",
157 "SKIA_ANDROID_VERBOSE_SETUP": "1", 157 "SKIA_ANDROID_VERBOSE_SETUP": "1",
158 "SKIA_OUT": "[SLAVE_BUILD]/out" 158 "SKIA_OUT": "[SLAVE_BUILD]/out"
159 }, 159 },
160 "name": "push resources" 160 "name": "push resources"
161 }, 161 },
162 { 162 {
163 "cmd": [ 163 "cmd": [
164 "python", 164 "python",
165 "-u", 165 "-u",
166 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", 166 "\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",
167 "[SLAVE_BUILD]/skia/infra/bots/assets/skp/VERSION", 167 "[SLAVE_BUILD]/skia/infra/bots/assets/skp/VERSION",
168 "/path/to/tmp/" 168 "/path/to/tmp/"
169 ], 169 ],
170 "name": "Get downloaded SKP VERSION" 170 "name": "Get downloaded SKP VERSION"
171 }, 171 },
172 { 172 {
173 "cmd": [ 173 "cmd": [
174 "python", 174 "python",
175 "-u", 175 "-u",
176 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", 176 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
(...skipping 16 matching lines...) Expand all
193 "PYTHONPATH": "[BUILD]/scripts", 193 "PYTHONPATH": "[BUILD]/scripts",
194 "SKIA_OUT": "[SLAVE_BUILD]/out" 194 "SKIA_OUT": "[SLAVE_BUILD]/out"
195 }, 195 },
196 "name": "read SKP_VERSION", 196 "name": "read SKP_VERSION",
197 "stdout": "/path/to/tmp/" 197 "stdout": "/path/to/tmp/"
198 }, 198 },
199 { 199 {
200 "cmd": [ 200 "cmd": [
201 "python", 201 "python",
202 "-u", 202 "-u",
203 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", 203 "\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",
204 "[SLAVE_BUILD]/skia/infra/bots/assets/skimage/VERSION", 204 "[SLAVE_BUILD]/skia/infra/bots/assets/skimage/VERSION",
205 "/path/to/tmp/" 205 "/path/to/tmp/"
206 ], 206 ],
207 "name": "Get downloaded skimage VERSION" 207 "name": "Get downloaded skimage VERSION"
208 }, 208 },
209 { 209 {
210 "cmd": [ 210 "cmd": [
211 "python", 211 "python",
212 "-u", 212 "-u",
213 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", 213 "\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
594 "SKIA_OUT": "[SLAVE_BUILD]/out" 594 "SKIA_OUT": "[SLAVE_BUILD]/out"
595 }, 595 },
596 "name": "kill-server" 596 "name": "kill-server"
597 }, 597 },
598 { 598 {
599 "name": "$result", 599 "name": "$result",
600 "recipe_result": null, 600 "recipe_result": null,
601 "status_code": 0 601 "status_code": 0
602 } 602 }
603 ] 603 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698