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

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

Issue 2063323002: Create recipe to run find_annotated_tests.py periodically (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Move from recipe to a step Created 4 years, 5 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 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 RESULTS_URL = 'https://chromeperf.appspot.com' 7 RESULTS_URL = 'https://chromeperf.appspot.com'
8 8
9 9
10 KITCHEN_TEST_SPEC = { 10 KITCHEN_TEST_SPEC = {
(...skipping 2036 matching lines...) Expand 10 before | Expand all | Expand 10 after
2047 'root_devices': True, 2047 'root_devices': True,
2048 'enable_swarming': False, 2048 'enable_swarming': False,
2049 'tests': [ 2049 'tests': [
2050 steps.GTestTest('remoting_unittests'), 2050 steps.GTestTest('remoting_unittests'),
2051 steps.AndroidInstrumentationTest('ChromotingTest'), 2051 steps.AndroidInstrumentationTest('ChromotingTest'),
2052 ], 2052 ],
2053 'testing': { 2053 'testing': {
2054 'platform': 'linux', 2054 'platform': 'linux',
2055 }, 2055 },
2056 }, 2056 },
2057 'Android Find Annotated Test': {
2058 'chromium_config': 'android',
2059 'gclient_config': 'chromium',
2060 'gclient_apply_config': ['android'],
2061 'chromium_config_kwargs': {
2062 'BUILD_CONFIG': 'Debug',
2063 'TARGET_PLATFORM': 'android',
2064 },
2065 'bot_type': 'builder_tester',
2066 'android_config': 'main_builder_mb',
2067 'remove_system_webview': True,
2068 'tests': [
2069 steps.FindAnnotatedTest(),
2070 ],
2071 'testing': {
2072 'platform': 'linux',
2073 },
2074 },
2075
2076
2057 'Android Asan Builder Tests (dbg)': { 2077 'Android Asan Builder Tests (dbg)': {
2058 'chromium_config': 'android', 2078 'chromium_config': 'android',
2059 'chromium_apply_config': ['mb'], 2079 'chromium_apply_config': ['mb'],
2060 'gclient_config': 'chromium', 2080 'gclient_config': 'chromium',
2061 'gclient_apply_config': ['android'], 2081 'gclient_apply_config': ['android'],
2062 'chromium_config_kwargs': { 2082 'chromium_config_kwargs': {
2063 'BUILD_CONFIG': 'Debug', 2083 'BUILD_CONFIG': 'Debug',
2064 'TARGET_BITS': 32, 2084 'TARGET_BITS': 32,
2065 'TARGET_PLATFORM': 'android', 2085 'TARGET_PLATFORM': 'android',
2066 }, 2086 },
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
2171 'enable_swarming': True, 2191 'enable_swarming': True,
2172 'testing': { 2192 'testing': {
2173 'platform': 'win', 2193 'platform': 'win',
2174 }, 2194 },
2175 }, 2195 },
2176 2196
2177 'Linux Kitchen (kitchen_run)': KITCHEN_TEST_SPEC, 2197 'Linux Kitchen (kitchen_run)': KITCHEN_TEST_SPEC,
2178 'Linux Kitchen (annotated_run)': KITCHEN_TEST_SPEC, 2198 'Linux Kitchen (annotated_run)': KITCHEN_TEST_SPEC,
2179 }, 2199 },
2180 } 2200 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698