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

Side by Side Diff: buildbot/config/master.chromium.fyi/master.cfg

Issue 56079: Add SunSpider and V8 Benchmark perf tests to Buildbot. (Closed) Base URL: svn://chrome-svn/chrome/trunk/tools/
Patch Set: '' Created 11 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | buildbot/config/master.chromium/master.cfg » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # -*- python -*- 1 # -*- python -*-
2 # ex: set syntax=python: 2 # ex: set syntax=python:
3 3
4 # Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 4 # Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
5 # Use of this source code is governed by a BSD-style license that can be 5 # Use of this source code is governed by a BSD-style license that can be
6 # found in the LICENSE file. 6 # found in the LICENSE file.
7 7
8 # This is the buildmaster config file for the 'chromium' bot. It must 8 # This is the buildmaster config file for the 'chromium' bot. It must
9 # be installed as 'master.cfg' in your buildmaster's base directory 9 # be installed as 'master.cfg' in your buildmaster's base directory
10 # (although the filename can be changed with the --basedir option to 10 # (although the filename can be changed with the --basedir option to
(...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after
261 mode='purify', 261 mode='purify',
262 run_crash_handler=True, 262 run_crash_handler=True,
263 tests=['purify_ui']) 263 tests=['purify_ui'])
264 264
265 f_chromium_rel_perf_xp_dual_v8 = m.NewBuildFactory(identifier='chromium-rel', 265 f_chromium_rel_perf_xp_dual_v8 = m.NewBuildFactory(identifier='chromium-rel',
266 perf_id='chromium-rel-xp-dual-v8', 266 perf_id='chromium-rel-xp-dual-v8',
267 show_perf_results=True, 267 show_perf_results=True,
268 run_crash_handler=True, 268 run_crash_handler=True,
269 tests=['page_cycler', 'startup', 269 tests=['page_cycler', 'startup',
270 'page_cycler_http', 270 'page_cycler_http',
271 'tab_switching', 'memory'], 271 'tab_switching', 'memory',
272 'sunspider', 'v8_benchmark'],
272 gclient_custom_deps=[m_webkit.CUSTOM_DEPS_V8_LATEST]) 273 gclient_custom_deps=[m_webkit.CUSTOM_DEPS_V8_LATEST])
273 274
274 f_chromium_rel_gears = m.NewGearsFactory(identifier='chromium-rel-gears', 275 f_chromium_rel_gears = m.NewGearsFactory(identifier='chromium-rel-gears',
275 target='Debug') 276 target='Debug')
276 277
277 f_webkit_rel_armu = m_webkit.NewBuildFactory( 278 f_webkit_rel_armu = m_webkit.NewBuildFactory(
278 'webkit-rel-armu', 279 'webkit-rel-armu',
279 solution='webkit_armu.sln', 280 solution='webkit_armu.sln',
280 tests=['test_shell', 'webkit'], 281 tests=['test_shell', 'webkit'],
281 gclient_custom_deps=[m_webkit.CUSTOM_DEPS_V8_LATEST]) 282 gclient_custom_deps=[m_webkit.CUSTOM_DEPS_V8_LATEST])
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
486 c['projectURL'] = config.Master.project_url 487 c['projectURL'] = config.Master.project_url
487 488
488 # the 'buildbotURL' string should point to the location where the buildbot's 489 # the 'buildbotURL' string should point to the location where the buildbot's
489 # internal web server (usually the html.Waterfall page) is visible. This 490 # internal web server (usually the html.Waterfall page) is visible. This
490 # typically uses the port number set in the Waterfall 'status' entry, but 491 # typically uses the port number set in the Waterfall 'status' entry, but
491 # with an externally-visible host name which the buildbot cannot figure out 492 # with an externally-visible host name which the buildbot cannot figure out
492 # without some help. 493 # without some help.
493 494
494 c['buildbotURL'] = 'http://build.chromium.org/buildbot/waterfall/' 495 c['buildbotURL'] = 'http://build.chromium.org/buildbot/waterfall/'
495 496
OLDNEW
« no previous file with comments | « no previous file | buildbot/config/master.chromium/master.cfg » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698