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

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

Issue 2148393002: Fix find annotated test bot config problem (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: 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
« no previous file with comments | « no previous file | no next file » | 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 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 1991 matching lines...) Expand 10 before | Expand all | Expand 10 after
2002 }, 2002 },
2003 }, 2003 },
2004 'Android Find Annotated Test': { 2004 'Android Find Annotated Test': {
2005 'chromium_config': 'android', 2005 'chromium_config': 'android',
2006 'gclient_config': 'chromium', 2006 'gclient_config': 'chromium',
2007 'gclient_apply_config': ['android'], 2007 'gclient_apply_config': ['android'],
2008 'chromium_config_kwargs': { 2008 'chromium_config_kwargs': {
2009 'BUILD_CONFIG': 'Debug', 2009 'BUILD_CONFIG': 'Debug',
2010 'TARGET_PLATFORM': 'android', 2010 'TARGET_PLATFORM': 'android',
2011 }, 2011 },
2012 'bot_type': 'builder_tester', 2012 'bot_type': 'tester',
2013 'android_config': 'main_builder_mb', 2013 'remove_system_webview': False,
jbudorick 2016/07/14 20:12:38 I think this should still be here?
2014 'remove_system_webview': True,
2015 'tests': [ 2014 'tests': [
2016 steps.FindAnnotatedTest(), 2015 steps.FindAnnotatedTest(),
2017 ], 2016 ],
2018 'testing': { 2017 'testing': {
2019 'platform': 'linux', 2018 'platform': 'linux',
2020 }, 2019 },
2021 }, 2020 },
2022 2021
2023 2022
2024 'Android Asan Builder Tests (dbg)': { 2023 'Android Asan Builder Tests (dbg)': {
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
2226 steps.generate_gtest, 2225 steps.generate_gtest,
2227 steps.generate_script, 2226 steps.generate_script,
2228 steps.generate_isolated_script, 2227 steps.generate_isolated_script,
2229 ], 2228 ],
2230 'testing': { 'platform': 'win', }, 2229 'testing': { 'platform': 'win', },
2231 'use_isolate': True, 2230 'use_isolate': True,
2232 'enable_swarming': True, 2231 'enable_swarming': True,
2233 }, 2232 },
2234 }, 2233 },
2235 } 2234 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698