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

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: Fix config problem 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 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 'parent_buildername': 'Android Builder (dbg)',
2013 'android_config': 'main_builder_mb', 2013 'bot_type': 'tester',
2014 'android_config': 'main_builder',
jbudorick 2016/07/14 20:31:56 I think this can and should be main_builder_mb
2014 'remove_system_webview': True, 2015 'remove_system_webview': True,
2015 'tests': [ 2016 'tests': [
2016 steps.FindAnnotatedTest(), 2017 steps.FindAnnotatedTest(),
2017 ], 2018 ],
2018 'testing': { 2019 'testing': {
2019 'platform': 'linux', 2020 'platform': 'linux',
2020 }, 2021 },
2021 }, 2022 },
2022 2023
2023 2024
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after
2226 steps.generate_gtest, 2227 steps.generate_gtest,
2227 steps.generate_script, 2228 steps.generate_script,
2228 steps.generate_isolated_script, 2229 steps.generate_isolated_script,
2229 ], 2230 ],
2230 'testing': { 'platform': 'win', }, 2231 'testing': { 'platform': 'win', },
2231 'use_isolate': True, 2232 'use_isolate': True,
2232 'enable_swarming': True, 2233 'enable_swarming': True,
2233 }, 2234 },
2234 }, 2235 },
2235 } 2236 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698