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

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: Add step to process Render Test results. 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('ChromePublicTest'),
1830 steps.UploadRenderTestFailures(render_results_dir='chrome/test/data/andr oid/render_tests'),
jbudorick 2016/10/25 17:03:40 :O Does this need to be a separately configured t
mikecase (-- gone --) 2016/10/25 20:53:33 hmmmm, well, I could add an argument to run_instru
1829 ], 1831 ],
1830 'testing': { 1832 'testing': {
1831 'platform': 'linux', 1833 'platform': 'linux',
1832 }, 1834 },
1833 }, 1835 },
1834 1836
1835 'Android Remoting Tests': { 1837 'Android Remoting Tests': {
1836 'chromium_config': 'android', 1838 'chromium_config': 'android',
1837 'gclient_config': 'chromium', 1839 'gclient_config': 'chromium',
1838 'gclient_apply_config': ['android'], 1840 'gclient_apply_config': ['android'],
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after
2097 'TARGET_PLATFORM': 'win', 2099 'TARGET_PLATFORM': 'win',
2098 'TARGET_BITS': 32, 2100 'TARGET_BITS': 32,
2099 }, 2101 },
2100 'bot_type': 'builder_tester', 2102 'bot_type': 'builder_tester',
2101 'testing': { 'platform': 'win', }, 2103 'testing': { 'platform': 'win', },
2102 'use_isolate': True, 2104 'use_isolate': True,
2103 'enable_swarming': True, 2105 'enable_swarming': True,
2104 }, 2106 },
2105 }, 2107 },
2106 } 2108 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698