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

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

Issue 2439213002: Add step to process Render Test results. (Closed)
Patch Set: Added parens to nested_step_name Created 4 years, 1 month 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 1808 matching lines...) Expand 10 before | Expand all | Expand 10 after
1819 'BUILD_CONFIG': 'Debug', 1819 'BUILD_CONFIG': 'Debug',
1820 'TARGET_BITS': 32, 1820 'TARGET_BITS': 32,
1821 'TARGET_PLATFORM': 'android', 1821 'TARGET_PLATFORM': 'android',
1822 }, 1822 },
1823 'bot_type': 'tester', 1823 'bot_type': 'tester',
1824 'parent_buildername': 'Android Builder (dbg)', 1824 'parent_buildername': 'Android Builder (dbg)',
1825 'android_config': 'non_device_wipe_provisioning', 1825 'android_config': 'non_device_wipe_provisioning',
1826 'root_devices': True, 1826 'root_devices': True,
1827 'tests': [ 1827 'tests': [
1828 steps.GTestTest('gfx_unittests'), 1828 steps.GTestTest('gfx_unittests'),
1829 steps.AndroidInstrumentationTest(
jbudorick 2016/11/03 18:34:36 We should be moving away from tests configured her
mikecase (-- gone --) 2016/11/03 18:41:37 Where should I configure this?
jbudorick 2016/11/07 21:58:56 src/testing/buildbot/chromium.fyi.json
mikecase (-- gone --) 2016/11/07 23:38:29 Noted. Removed this change.
1830 'ChromePublicTest',
1831 render_results_dir='chrome/test/data/android/render_tests'),
1829 ], 1832 ],
1830 'testing': { 1833 'testing': {
1831 'platform': 'linux', 1834 'platform': 'linux',
1832 }, 1835 },
1833 }, 1836 },
1834 1837
1835 'Android Remoting Tests': { 1838 'Android Remoting Tests': {
1836 'chromium_config': 'android', 1839 'chromium_config': 'android',
1837 'gclient_config': 'chromium', 1840 'gclient_config': 'chromium',
1838 'gclient_apply_config': ['android'], 1841 'gclient_apply_config': ['android'],
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after
2097 'TARGET_PLATFORM': 'win', 2100 'TARGET_PLATFORM': 'win',
2098 'TARGET_BITS': 32, 2101 'TARGET_BITS': 32,
2099 }, 2102 },
2100 'bot_type': 'builder_tester', 2103 'bot_type': 'builder_tester',
2101 'testing': { 'platform': 'win', }, 2104 'testing': { 'platform': 'win', },
2102 'use_isolate': True, 2105 'use_isolate': True,
2103 'enable_swarming': True, 2106 'enable_swarming': True,
2104 }, 2107 },
2105 }, 2108 },
2106 } 2109 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698