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

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

Issue 1679703004: Remove build-side specification of instrumentation tests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Rerun expectations. Created 4 years, 10 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | scripts/slave/recipes/chromium.expected/chromium_linux_Android_Tests_logcat_upload_timeout.json » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 from . import steps 5 from . import steps
6 6
7 SPEC = { 7 SPEC = {
8 'settings': { 8 'settings': {
9 'build_gs_bucket': 'chromium-linux-archive', 9 'build_gs_bucket': 'chromium-linux-archive',
10 # WARNING: src-side runtest.py is only tested with chromium CQ builders. 10 # WARNING: src-side runtest.py is only tested with chromium CQ builders.
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after
242 'chromium_config_kwargs': { 242 'chromium_config_kwargs': {
243 'BUILD_CONFIG': 'Debug', 243 'BUILD_CONFIG': 'Debug',
244 'TARGET_BITS': 32, 244 'TARGET_BITS': 32,
245 'TARGET_PLATFORM': 'android', 245 'TARGET_PLATFORM': 'android',
246 }, 246 },
247 'bot_type': 'tester', 247 'bot_type': 'tester',
248 'parent_buildername': 'Android Builder (dbg)', 248 'parent_buildername': 'Android Builder (dbg)',
249 'android_config': 'main_builder', 249 'android_config': 'main_builder',
250 'root_devices': True, 250 'root_devices': True,
251 'tests': [ 251 'tests': [
252 steps.AndroidInstrumentationTest('AndroidWebViewTest'),
253 steps.AndroidInstrumentationTest('ChromePublicTest'),
254 steps.AndroidInstrumentationTest('ContentShellTest'),
255 steps.AndroidInstrumentationTest('ChromeSyncShellTest'),
256 steps.AndroidJunitTest('base_junit_tests'), 252 steps.AndroidJunitTest('base_junit_tests'),
257 steps.AndroidJunitTest('chrome_junit_tests'), 253 steps.AndroidJunitTest('chrome_junit_tests'),
258 steps.AndroidJunitTest('components_junit_tests'), 254 steps.AndroidJunitTest('components_junit_tests'),
259 steps.AndroidJunitTest('content_junit_tests'), 255 steps.AndroidJunitTest('content_junit_tests'),
260 steps.AndroidJunitTest('junit_unit_tests'), 256 steps.AndroidJunitTest('junit_unit_tests'),
261 steps.AndroidJunitTest('net_junit_tests'), 257 steps.AndroidJunitTest('net_junit_tests'),
262 ], 258 ],
263 'test_generators': [ 259 'test_generators': [
264 steps.generate_gtest, 260 steps.generate_gtest,
261 steps.generate_instrumentation_test,
262 steps.generate_isolated_script,
265 steps.generate_script, 263 steps.generate_script,
266 steps.generate_isolated_script,
267 ], 264 ],
268 'testing': { 265 'testing': {
269 'platform': 'linux', 266 'platform': 'linux',
270 }, 267 },
271 'enable_swarming': True, 268 'enable_swarming': True,
272 }, 269 },
273 270
274 'Android Builder': { 271 'Android Builder': {
275 'chromium_config': 'android', 272 'chromium_config': 'android',
276 'gclient_config': 'chromium', 273 'gclient_config': 'chromium',
(...skipping 21 matching lines...) Expand all
298 'chromium_config_kwargs': { 295 'chromium_config_kwargs': {
299 'BUILD_CONFIG': 'Release', 296 'BUILD_CONFIG': 'Release',
300 'TARGET_BITS': 32, 297 'TARGET_BITS': 32,
301 'TARGET_PLATFORM': 'android', 298 'TARGET_PLATFORM': 'android',
302 }, 299 },
303 'bot_type': 'tester', 300 'bot_type': 'tester',
304 'parent_buildername': 'Android Builder', 301 'parent_buildername': 'Android Builder',
305 'android_config': 'main_builder', 302 'android_config': 'main_builder',
306 'root_devices': True, 303 'root_devices': True,
307 'tests': [ 304 'tests': [
308 steps.AndroidInstrumentationTest('AndroidWebViewTest'),
309 steps.AndroidInstrumentationTest('ChromePublicTest'),
310 steps.AndroidInstrumentationTest('ContentShellTest'),
311 steps.AndroidInstrumentationTest('ChromeSyncShellTest'),
312 steps.AndroidJunitTest('base_junit_tests'), 305 steps.AndroidJunitTest('base_junit_tests'),
313 steps.AndroidJunitTest('chrome_junit_tests'), 306 steps.AndroidJunitTest('chrome_junit_tests'),
314 steps.AndroidJunitTest('components_junit_tests'), 307 steps.AndroidJunitTest('components_junit_tests'),
315 steps.AndroidJunitTest('content_junit_tests'), 308 steps.AndroidJunitTest('content_junit_tests'),
316 steps.AndroidJunitTest('junit_unit_tests'), 309 steps.AndroidJunitTest('junit_unit_tests'),
317 steps.AndroidJunitTest('net_junit_tests'), 310 steps.AndroidJunitTest('net_junit_tests'),
318 ], 311 ],
319 'test_generators': [ 312 'test_generators': [
320 steps.generate_gtest, 313 steps.generate_gtest,
314 steps.generate_instrumentation_test,
315 steps.generate_isolated_script,
321 steps.generate_script, 316 steps.generate_script,
322 steps.generate_isolated_script,
323 steps.generate_instrumentation_test,
324 ], 317 ],
325 'testing': { 318 'testing': {
326 'platform': 'linux', 319 'platform': 'linux',
327 }, 320 },
328 'enable_swarming': True, 321 'enable_swarming': True,
329 }, 322 },
330 323
331 'Android Clang Builder (dbg)': { 324 'Android Clang Builder (dbg)': {
332 'chromium_config': 'android_clang', 325 'chromium_config': 'android_clang',
333 'chromium_apply_config': ['errorprone'], 326 'chromium_apply_config': ['errorprone'],
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
381 'TARGET_BITS': 32, 374 'TARGET_BITS': 32,
382 'TARGET_PLATFORM': 'android', 375 'TARGET_PLATFORM': 'android',
383 }, 376 },
384 'android_config': 'cast_builder', 377 'android_config': 'cast_builder',
385 'testing': { 378 'testing': {
386 'platform': 'linux', 379 'platform': 'linux',
387 }, 380 },
388 }, 381 },
389 }, 382 },
390 } 383 }
OLDNEW
« no previous file with comments | « no previous file | scripts/slave/recipes/chromium.expected/chromium_linux_Android_Tests_logcat_upload_timeout.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698