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

Side by Side Diff: scripts/slave/recipes/skia/swarm_test.expected/legacy_skimage_version.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-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug" 8 "Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug"
9 ], 9 ],
10 "cwd": "[SLAVE_BUILD]/skia", 10 "cwd": "[SLAVE_BUILD]/skia",
(...skipping 30 matching lines...) Expand all
41 "@@@STEP_LOG_LINE@json.output@ \"upload_dm_results\": true, @@@", 41 "@@@STEP_LOG_LINE@json.output@ \"upload_dm_results\": true, @@@",
42 "@@@STEP_LOG_LINE@json.output@ \"upload_perf_results\": false@@@", 42 "@@@STEP_LOG_LINE@json.output@ \"upload_perf_results\": false@@@",
43 "@@@STEP_LOG_LINE@json.output@}@@@", 43 "@@@STEP_LOG_LINE@json.output@}@@@",
44 "@@@STEP_LOG_END@json.output@@@" 44 "@@@STEP_LOG_END@json.output@@@"
45 ] 45 ]
46 }, 46 },
47 { 47 {
48 "cmd": [ 48 "cmd": [
49 "python", 49 "python",
50 "-u", 50 "-u",
51 "\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", 51 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
52 "[SLAVE_BUILD]/skia/infra/bots/assets/skp/VERSION", 52 "[SLAVE_BUILD]/skia/infra/bots/assets/skp/VERSION",
53 "/path/to/tmp/" 53 "/path/to/tmp/"
54 ], 54 ],
55 "name": "Get downloaded SKP VERSION" 55 "name": "Get downloaded SKP VERSION"
56 }, 56 },
57 { 57 {
58 "cmd": [ 58 "cmd": [
59 "python", 59 "python",
60 "-u", 60 "-u",
61 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", 61 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
62 "42", 62 "42",
63 "[SLAVE_BUILD]/tmp/SKP_VERSION" 63 "[SLAVE_BUILD]/tmp/SKP_VERSION"
64 ], 64 ],
65 "name": "write SKP_VERSION" 65 "name": "write SKP_VERSION"
66 }, 66 },
67 { 67 {
68 "cmd": [ 68 "cmd": [
69 "python", 69 "python",
70 "-u", 70 "-u",
71 "\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", 71 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
72 "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION", 72 "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION",
73 "/path/to/tmp/" 73 "/path/to/tmp/"
74 ], 74 ],
75 "name": "Get downloaded SK_IMAGE_VERSION" 75 "name": "Get downloaded SK_IMAGE_VERSION"
76 }, 76 },
77 { 77 {
78 "cmd": [ 78 "cmd": [
79 "python", 79 "python",
80 "-u", 80 "-u",
81 "\nimport os, sys\nfrom common import chromium_utils # Error? See https:// crbug.com/584783.\n\n\nif os.path.exists(sys.argv[1]):\n chromium_utils.RemoveD irectory(sys.argv[1])\n", 81 "\nimport os, sys\nfrom common import chromium_utils # Error? See https:// crbug.com/584783.\n\n\nif os.path.exists(sys.argv[1]):\n chromium_utils.RemoveD irectory(sys.argv[1])\n",
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
243 "SKIA_OUT": "[SLAVE_BUILD]/out" 243 "SKIA_OUT": "[SLAVE_BUILD]/out"
244 }, 244 },
245 "name": "dm" 245 "name": "dm"
246 }, 246 },
247 { 247 {
248 "name": "$result", 248 "name": "$result",
249 "recipe_result": null, 249 "recipe_result": null,
250 "status_code": 0 250 "status_code": 0
251 } 251 }
252 ] 252 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698