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

Side by Side Diff: scripts/slave/recipe_modules/chromium_tests/chromium_perf.py

Issue 2275143002: [perf] Add Win 10 High-DPI Perf bots. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
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 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import collections 5 import collections
6 6
7 from . import steps 7 from . import steps
8 8
9 import DEPS 9 import DEPS
10 CHROMIUM_CONFIG_CTX = DEPS['chromium'].CONFIG_CTX 10 CHROMIUM_CONFIG_CTX = DEPS['chromium'].CONFIG_CTX
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 _AddTestSpec('Android Nexus7v2 Perf', 'android-nexus7v2', 'android', 149 _AddTestSpec('Android Nexus7v2 Perf', 'android-nexus7v2', 'android',
150 target_bits=32, num_device_shards=7, num_host_shards=3) 150 target_bits=32, num_device_shards=7, num_host_shards=3)
151 _AddTestSpec('Android Nexus9 Perf', 'android-nexus9', 'android', 151 _AddTestSpec('Android Nexus9 Perf', 'android-nexus9', 'android',
152 num_device_shards=7, num_host_shards=3) 152 num_device_shards=7, num_host_shards=3)
153 _AddTestSpec('Android One Perf', 'android-one', 'android', 153 _AddTestSpec('Android One Perf', 'android-one', 'android',
154 target_bits=32, num_device_shards=7, num_host_shards=3) 154 target_bits=32, num_device_shards=7, num_host_shards=3)
155 155
156 156
157 _AddTestSpec('Win Zenbook Perf', 'win-zenbook', 'win', 157 _AddTestSpec('Win Zenbook Perf', 'win-zenbook', 'win',
158 num_host_shards=5) 158 num_host_shards=5)
159 _AddTestSpec('Win 10 High-DPI Perf', 'win-high-dpi', 'win',
160 num_host_shards=5)
159 _AddTestSpec('Win 10 Perf', 'chromium-rel-win10', 'win', 161 _AddTestSpec('Win 10 Perf', 'chromium-rel-win10', 'win',
160 num_host_shards=5) 162 num_host_shards=5)
161 _AddTestSpec('Win 8 Perf', 'chromium-rel-win8-dual', 'win', 163 _AddTestSpec('Win 8 Perf', 'chromium-rel-win8-dual', 'win',
162 num_host_shards=5) 164 num_host_shards=5)
163 _AddTestSpec('Win 7 Perf', 'chromium-rel-win7-dual', 'win', 165 _AddTestSpec('Win 7 Perf', 'chromium-rel-win7-dual', 'win',
164 target_bits=32, num_host_shards=5) 166 target_bits=32, num_host_shards=5)
165 _AddTestSpec('Win 7 x64 Perf', 'chromium-rel-win7-x64-dual', 'win', 167 _AddTestSpec('Win 7 x64 Perf', 'chromium-rel-win7-x64-dual', 'win',
166 num_host_shards=5) 168 num_host_shards=5)
167 _AddTestSpec('Win 7 ATI GPU Perf', 'chromium-rel-win7-gpu-ati', 'win', 169 _AddTestSpec('Win 7 ATI GPU Perf', 'chromium-rel-win7-gpu-ati', 'win',
168 num_host_shards=5) 170 num_host_shards=5)
169 _AddTestSpec('Win 7 Intel GPU Perf', 'chromium-rel-win7-gpu-intel', 'win', 171 _AddTestSpec('Win 7 Intel GPU Perf', 'chromium-rel-win7-gpu-intel', 'win',
170 num_host_shards=5) 172 num_host_shards=5)
171 _AddTestSpec('Win 7 Nvidia GPU Perf', 'chromium-rel-win7-gpu-nvidia', 'win', 173 _AddTestSpec('Win 7 Nvidia GPU Perf', 'chromium-rel-win7-gpu-nvidia', 'win',
172 num_host_shards=5) 174 num_host_shards=5)
173 175
174 176
175 _AddTestSpec('Mac 10.11 Perf', 'chromium-rel-mac11', 'mac', 177 _AddTestSpec('Mac 10.11 Perf', 'chromium-rel-mac11', 'mac',
176 num_host_shards=5) 178 num_host_shards=5)
177 _AddTestSpec('Mac 10.10 Perf', 'chromium-rel-mac10', 'mac', 179 _AddTestSpec('Mac 10.10 Perf', 'chromium-rel-mac10', 'mac',
178 num_host_shards=5) 180 num_host_shards=5)
179 _AddTestSpec('Mac Retina Perf', 'chromium-rel-mac-retina', 'mac', 181 _AddTestSpec('Mac Retina Perf', 'chromium-rel-mac-retina', 'mac',
180 num_host_shards=5) 182 num_host_shards=5)
181 _AddTestSpec('Mac HDD Perf', 'chromium-rel-mac-hdd', 'mac', 183 _AddTestSpec('Mac HDD Perf', 'chromium-rel-mac-hdd', 'mac',
182 num_host_shards=5) 184 num_host_shards=5)
183 185
184 186
185 _AddTestSpec('Linux Perf', 'linux-release', 'linux', 187 _AddTestSpec('Linux Perf', 'linux-release', 'linux',
186 num_host_shards=5) 188 num_host_shards=5)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698