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

Side by Side Diff: scripts/slave/recipes/skia/swarm_test.expected/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-MSAN.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-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-MSAN" 8 "Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-MSAN"
9 ], 9 ],
10 "cwd": "[SLAVE_BUILD]/skia", 10 "cwd": "[SLAVE_BUILD]/skia",
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 "@@@STEP_LOG_LINE@json.output@ \"upload_dm_results\": false, @@@", 42 "@@@STEP_LOG_LINE@json.output@ \"upload_dm_results\": false, @@@",
43 "@@@STEP_LOG_LINE@json.output@ \"upload_perf_results\": false@@@", 43 "@@@STEP_LOG_LINE@json.output@ \"upload_perf_results\": false@@@",
44 "@@@STEP_LOG_LINE@json.output@}@@@", 44 "@@@STEP_LOG_LINE@json.output@}@@@",
45 "@@@STEP_LOG_END@json.output@@@" 45 "@@@STEP_LOG_END@json.output@@@"
46 ] 46 ]
47 }, 47 },
48 { 48 {
49 "cmd": [ 49 "cmd": [
50 "python", 50 "python",
51 "-u", 51 "-u",
52 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", 52 "\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",
53 "[SLAVE_BUILD]/skia/infra/bots/assets/skp/VERSION", 53 "[SLAVE_BUILD]/skia/infra/bots/assets/skp/VERSION",
54 "/path/to/tmp/" 54 "/path/to/tmp/"
55 ], 55 ],
56 "name": "Get downloaded SKP VERSION" 56 "name": "Get downloaded SKP VERSION"
57 }, 57 },
58 { 58 {
59 "cmd": [ 59 "cmd": [
60 "python", 60 "python",
61 "-u", 61 "-u",
62 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", 62 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
63 "42", 63 "42",
64 "[SLAVE_BUILD]/tmp/SKP_VERSION" 64 "[SLAVE_BUILD]/tmp/SKP_VERSION"
65 ], 65 ],
66 "name": "write SKP_VERSION" 66 "name": "write SKP_VERSION"
67 }, 67 },
68 { 68 {
69 "cmd": [ 69 "cmd": [
70 "python", 70 "python",
71 "-u", 71 "-u",
72 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", 72 "\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",
73 "[SLAVE_BUILD]/skia/infra/bots/assets/skimage/VERSION", 73 "[SLAVE_BUILD]/skia/infra/bots/assets/skimage/VERSION",
74 "/path/to/tmp/" 74 "/path/to/tmp/"
75 ], 75 ],
76 "name": "Get downloaded skimage VERSION" 76 "name": "Get downloaded skimage VERSION"
77 }, 77 },
78 { 78 {
79 "cmd": [ 79 "cmd": [
80 "python", 80 "python",
81 "-u", 81 "-u",
82 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", 82 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
141 "UBSAN_OPTIONS": "suppressions=[SLAVE_BUILD]/skia/tools/ubsan.supp" 141 "UBSAN_OPTIONS": "suppressions=[SLAVE_BUILD]/skia/tools/ubsan.supp"
142 }, 142 },
143 "name": "dm" 143 "name": "dm"
144 }, 144 },
145 { 145 {
146 "name": "$result", 146 "name": "$result",
147 "recipe_result": null, 147 "recipe_result": null,
148 "status_code": 0 148 "status_code": 0
149 } 149 }
150 ] 150 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698