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

Side by Side Diff: infra/bots/recipes/swarm_perf.expected/Perf-Mac-Clang-MacMini6.2-CPU-AVX-x86_64-Release-GN.json

Issue 2215443003: [recipes] Increase test coverage (Closed) Base URL: https://skia.googlesource.com/skia.git@merge_buildbot_spec
Patch Set: Created 4 years, 4 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 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", 6 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
7 "[SLAVE_BUILD]/skia/infra/bots/assets/skp/VERSION", 7 "[SLAVE_BUILD]/skia/infra/bots/assets/skp/VERSION",
8 "/path/to/tmp/" 8 "/path/to/tmp/"
9 ], 9 ],
10 "name": "Get downloaded SKP VERSION" 10 "name": "Get downloaded SKP VERSION"
(...skipping 26 matching lines...) Expand all
37 "42", 37 "42",
38 "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION" 38 "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION"
39 ], 39 ],
40 "name": "write SK_IMAGE_VERSION" 40 "name": "write SK_IMAGE_VERSION"
41 }, 41 },
42 { 42 {
43 "cmd": [ 43 "cmd": [
44 "python", 44 "python",
45 "-u", 45 "-u",
46 "\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", 46 "\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",
47 "[CUSTOM_[SWARM_OUT_DIR]]/perfdata/Perf-Ubuntu-GCC-ShuttleA-GPU-GTX550Ti-x 86_64-Release-VisualBench/data" 47 "[CUSTOM_[SWARM_OUT_DIR]]/perfdata/Perf-Mac-Clang-MacMini6.2-CPU-AVX-x86_6 4-Release-GN/data"
48 ], 48 ],
49 "env": { 49 "env": {
50 "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts" 50 "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
51 }, 51 },
52 "name": "rmtree data", 52 "name": "rmtree data",
53 "~followup_annotations": [ 53 "~followup_annotations": [
54 "@@@STEP_LOG_LINE@python.inline@@@@", 54 "@@@STEP_LOG_LINE@python.inline@@@@",
55 "@@@STEP_LOG_LINE@python.inline@import os, sys@@@", 55 "@@@STEP_LOG_LINE@python.inline@import os, sys@@@",
56 "@@@STEP_LOG_LINE@python.inline@from common import chromium_utils # Error? See https://crbug.com/584783.@@@", 56 "@@@STEP_LOG_LINE@python.inline@from common import chromium_utils # Error? See https://crbug.com/584783.@@@",
57 "@@@STEP_LOG_LINE@python.inline@@@@", 57 "@@@STEP_LOG_LINE@python.inline@@@@",
58 "@@@STEP_LOG_LINE@python.inline@@@@", 58 "@@@STEP_LOG_LINE@python.inline@@@@",
59 "@@@STEP_LOG_LINE@python.inline@if os.path.exists(sys.argv[1]):@@@", 59 "@@@STEP_LOG_LINE@python.inline@if os.path.exists(sys.argv[1]):@@@",
60 "@@@STEP_LOG_LINE@python.inline@ chromium_utils.RemoveDirectory(sys.argv[ 1])@@@", 60 "@@@STEP_LOG_LINE@python.inline@ chromium_utils.RemoveDirectory(sys.argv[ 1])@@@",
61 "@@@STEP_LOG_END@python.inline@@@" 61 "@@@STEP_LOG_END@python.inline@@@"
62 ] 62 ]
63 }, 63 },
64 { 64 {
65 "cmd": [ 65 "cmd": [
66 "python", 66 "python",
67 "-u", 67 "-u",
68 "\nimport sys, os\npath = sys.argv[1]\nmode = int(sys.argv[2])\nif not os. path.isdir(path):\n if os.path.exists(path):\n print \"%s exists but is not a dir\" % path\n sys.exit(1)\n os.makedirs(path, mode)\n", 68 "\nimport sys, os\npath = sys.argv[1]\nmode = int(sys.argv[2])\nif not os. path.isdir(path):\n if os.path.exists(path):\n print \"%s exists but is not a dir\" % path\n sys.exit(1)\n os.makedirs(path, mode)\n",
69 "[CUSTOM_[SWARM_OUT_DIR]]/perfdata/Perf-Ubuntu-GCC-ShuttleA-GPU-GTX550Ti-x 86_64-Release-VisualBench/data", 69 "[CUSTOM_[SWARM_OUT_DIR]]/perfdata/Perf-Mac-Clang-MacMini6.2-CPU-AVX-x86_6 4-Release-GN/data",
70 "511" 70 "511"
71 ], 71 ],
72 "name": "makedirs data", 72 "name": "makedirs data",
73 "~followup_annotations": [ 73 "~followup_annotations": [
74 "@@@STEP_LOG_LINE@python.inline@@@@", 74 "@@@STEP_LOG_LINE@python.inline@@@@",
75 "@@@STEP_LOG_LINE@python.inline@import sys, os@@@", 75 "@@@STEP_LOG_LINE@python.inline@import sys, os@@@",
76 "@@@STEP_LOG_LINE@python.inline@path = sys.argv[1]@@@", 76 "@@@STEP_LOG_LINE@python.inline@path = sys.argv[1]@@@",
77 "@@@STEP_LOG_LINE@python.inline@mode = int(sys.argv[2])@@@", 77 "@@@STEP_LOG_LINE@python.inline@mode = int(sys.argv[2])@@@",
78 "@@@STEP_LOG_LINE@python.inline@if not os.path.isdir(path):@@@", 78 "@@@STEP_LOG_LINE@python.inline@if not os.path.isdir(path):@@@",
79 "@@@STEP_LOG_LINE@python.inline@ if os.path.exists(path):@@@", 79 "@@@STEP_LOG_LINE@python.inline@ if os.path.exists(path):@@@",
80 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" % path@@@", 80 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" % path@@@",
81 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", 81 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@",
82 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@", 82 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@",
83 "@@@STEP_LOG_END@python.inline@@@" 83 "@@@STEP_LOG_END@python.inline@@@"
84 ] 84 ]
85 }, 85 },
86 { 86 {
87 "cmd": [ 87 "cmd": [
88 "catchsegv", 88 "catchsegv",
89 "[SLAVE_BUILD]/out/Release/visualbench", 89 "[SLAVE_BUILD]/out/Release/nanobench",
90 "--undefok", 90 "--undefok",
91 "-i", 91 "-i",
92 "[SLAVE_BUILD]/skia/resources", 92 "[SLAVE_BUILD]/skia/resources",
93 "--skps", 93 "--skps",
94 "[SLAVE_BUILD]/skp", 94 "[SLAVE_BUILD]/skp",
95 "--images", 95 "--images",
96 "[SLAVE_BUILD]/skimage/nanobench", 96 "[SLAVE_BUILD]/skimage/nanobench",
97 "--nocpu", 97 "--nogpu",
98 "--pre_log", 98 "--pre_log",
99 "--images",
100 "--gpuStatsDump",
101 "true",
102 "--scales", 99 "--scales",
103 "1.0", 100 "1.0",
104 "1.1", 101 "1.1",
105 "--config", 102 "--config",
106 "565", 103 "565",
107 "8888", 104 "8888",
108 "gpu", 105 "gpu",
109 "nonrendering", 106 "nonrendering",
110 "angle", 107 "angle",
111 "hwui", 108 "hwui",
112 "f16", 109 "f16",
113 "srgb", 110 "srgb",
114 "msaa16", 111 "msaa16",
115 "nvpr16", 112 "nvpr16",
116 "nvprdit16", 113 "nvprdit16",
114 "glinst",
115 "glinst16",
117 "--match", 116 "--match",
118 "~interlaced1.png", 117 "~interlaced1.png",
119 "~interlaced2.png", 118 "~interlaced2.png",
120 "~interlaced3.png", 119 "~interlaced3.png",
121 "~inc0.gif", 120 "~inc0.gif",
122 "~inc1.gif", 121 "~inc1.gif",
123 "~incInterlaced.gif", 122 "~incInterlaced.gif",
124 "~inc0.jpg", 123 "~inc0.jpg",
125 "~incGray.jpg", 124 "~incGray.jpg",
126 "~inc0.wbmp", 125 "~inc0.wbmp",
127 "~inc1.wbmp", 126 "~inc1.wbmp",
128 "~inc0.webp", 127 "~inc0.webp",
129 "~inc1.webp", 128 "~inc1.webp",
130 "~inc0.ico", 129 "~inc0.ico",
131 "~inc1.ico", 130 "~inc1.ico",
132 "~inc0.png", 131 "~inc0.png",
133 "~inc1.png", 132 "~inc1.png",
134 "~inc2.png", 133 "~inc2.png",
135 "~inc12.png", 134 "~inc12.png",
136 "~inc13.png", 135 "~inc13.png",
137 "~inc14.png", 136 "~inc14.png",
138 "~inc0.webp", 137 "~inc0.webp",
139 "~inc1.webp", 138 "~inc1.webp",
140 "--outResultsFile", 139 "--outResultsFile",
141 "[CUSTOM_[SWARM_OUT_DIR]]/perfdata/Perf-Ubuntu-GCC-ShuttleA-GPU-GTX550Ti-x 86_64-Release-VisualBench/data/nanobench_abc123.json", 140 "[CUSTOM_[SWARM_OUT_DIR]]/perfdata/Perf-Mac-Clang-MacMini6.2-CPU-AVX-x86_6 4-Release-GN/data/nanobench_abc123.json",
142 "--properties", 141 "--properties",
143 "gitHash", 142 "gitHash",
144 "abc123", 143 "abc123",
145 "build_number", 144 "build_number",
146 "5", 145 "5",
147 "--key", 146 "--key",
148 "arch", 147 "arch",
149 "x86_64", 148 "x86_64",
150 "compiler", 149 "compiler",
151 "GCC", 150 "Clang",
152 "cpu_or_gpu", 151 "cpu_or_gpu",
153 "GPU", 152 "CPU",
154 "cpu_or_gpu_value", 153 "cpu_or_gpu_value",
155 "GTX550Ti", 154 "AVX",
156 "extra_config", 155 "extra_config",
157 "VisualBench", 156 "GN",
158 "model", 157 "model",
159 "ShuttleA", 158 "MacMini6.2",
160 "os", 159 "os",
161 "Ubuntu" 160 "Mac"
162 ], 161 ],
163 "env": { 162 "env": {
164 "BUILDTYPE": "Release", 163 "BUILDTYPE": "Release",
165 "CHROME_HEADLESS": "1", 164 "CHROME_HEADLESS": "1",
166 "SKIA_OUT": "[SLAVE_BUILD]/out" 165 "SKIA_OUT": "[SLAVE_BUILD]/out"
167 }, 166 },
168 "name": "visualbench" 167 "name": "nanobench"
169 }, 168 },
170 { 169 {
171 "cmd": [ 170 "cmd": [
172 "python", 171 "python",
173 "-u", 172 "-u",
174 "\nimport sys, os\npath = sys.argv[1]\nmode = int(sys.argv[2])\nif not os. path.isdir(path):\n if os.path.exists(path):\n print \"%s exists but is not a dir\" % path\n sys.exit(1)\n os.makedirs(path, mode)\n", 173 "\nimport sys, os\npath = sys.argv[1]\nmode = int(sys.argv[2])\nif not os. path.isdir(path):\n if os.path.exists(path):\n print \"%s exists but is not a dir\" % path\n sys.exit(1)\n os.makedirs(path, mode)\n",
175 "[CUSTOM_[SWARM_OUT_DIR]]/perfdata/Perf-Ubuntu-GCC-ShuttleA-GPU-GTX550Ti-x 86_64-Release-VisualBench/data", 174 "[CUSTOM_[SWARM_OUT_DIR]]/perfdata/Perf-Mac-Clang-MacMini6.2-CPU-AVX-x86_6 4-Release-GN/data",
176 "511" 175 "511"
177 ], 176 ],
178 "name": "makedirs perf_dir", 177 "name": "makedirs perf_dir",
179 "~followup_annotations": [ 178 "~followup_annotations": [
180 "@@@STEP_LOG_LINE@python.inline@@@@", 179 "@@@STEP_LOG_LINE@python.inline@@@@",
181 "@@@STEP_LOG_LINE@python.inline@import sys, os@@@", 180 "@@@STEP_LOG_LINE@python.inline@import sys, os@@@",
182 "@@@STEP_LOG_LINE@python.inline@path = sys.argv[1]@@@", 181 "@@@STEP_LOG_LINE@python.inline@path = sys.argv[1]@@@",
183 "@@@STEP_LOG_LINE@python.inline@mode = int(sys.argv[2])@@@", 182 "@@@STEP_LOG_LINE@python.inline@mode = int(sys.argv[2])@@@",
184 "@@@STEP_LOG_LINE@python.inline@if not os.path.isdir(path):@@@", 183 "@@@STEP_LOG_LINE@python.inline@if not os.path.isdir(path):@@@",
185 "@@@STEP_LOG_LINE@python.inline@ if os.path.exists(path):@@@", 184 "@@@STEP_LOG_LINE@python.inline@ if os.path.exists(path):@@@",
186 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" % path@@@", 185 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" % path@@@",
187 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", 186 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@",
188 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@", 187 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@",
189 "@@@STEP_LOG_END@python.inline@@@" 188 "@@@STEP_LOG_END@python.inline@@@"
190 ] 189 ]
191 }, 190 },
192 { 191 {
193 "name": "$result", 192 "name": "$result",
194 "recipe_result": null, 193 "recipe_result": null,
195 "status_code": 0 194 "status_code": 0
196 } 195 }
197 ] 196 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698