Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # -*- python -*- | 1 # -*- python -*- |
| 2 # ex: set syntax=python: | 2 # ex: set syntax=python: |
| 3 | 3 |
| 4 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 4 # Copyright (c) 2012 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 343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 354 f_cr_rel_linux_1 = F_LINUX(slave_type='Tester', | 354 f_cr_rel_linux_1 = F_LINUX(slave_type='Tester', |
| 355 build_url=chromium_rel_linux_archive, | 355 build_url=chromium_rel_linux_archive, |
| 356 tests=['page_cycler_moz', | 356 tests=['page_cycler_moz', |
| 357 'page_cycler_morejs', | 357 'page_cycler_morejs', |
| 358 'page_cycler_intl1', | 358 'page_cycler_intl1', |
| 359 'page_cycler_intl2', | 359 'page_cycler_intl2', |
| 360 'page_cycler_dhtml', | 360 'page_cycler_dhtml', |
| 361 'page_cycler_database', | 361 'page_cycler_database', |
| 362 'page_cycler_indexeddb', 'startup', | 362 'page_cycler_indexeddb', 'startup', |
| 363 'page_cycler_moz-http', | 363 'page_cycler_moz-http', |
| 364 'page_cycler_bloat-http'], | 364 'page_cycler_bloat-http', |
| 365 'web_page_replay_2012Q2'], | |
|
tonyg_google
2012/05/31 01:59:56
Since web page replay can be used to back tests ot
slamm_google
2012/06/02 22:04:56
Thanks for the name suggestion. That is much bette
| |
| 365 factory_properties={ | 366 factory_properties={ |
| 366 'show_perf_results': True, | 367 'show_perf_results': True, |
| 367 'expectations': True, | 368 'expectations': True, |
| 368 'halt_on_missing_build': True, | 369 'halt_on_missing_build': True, |
| 369 'perf_id': 'linux-release'}) | 370 'perf_id': 'linux-release'}) |
| 370 | 371 |
| 371 f_cr_rel_linux_2 = F_LINUX(slave_type='Tester', | 372 f_cr_rel_linux_2 = F_LINUX(slave_type='Tester', |
| 372 build_url=chromium_rel_linux_archive, | 373 build_url=chromium_rel_linux_archive, |
| 373 tests=['dom_perf', 'memory', 'sunspider', | 374 tests=['dom_perf', 'memory', 'sunspider', |
| 374 'v8_benchmark', 'dromaeo', | 375 'v8_benchmark', 'dromaeo', |
| 375 'frame_rate', 'dom_checker', 'sync'], | 376 'frame_rate', 'dom_checker', 'sync'], |
| 376 factory_properties={ | 377 factory_properties={ |
| 377 'show_perf_results': True, | 378 'show_perf_results': True, |
| 378 'expectations': True, | 379 'expectations': True, |
| 379 'halt_on_missing_build': True, | 380 'halt_on_missing_build': True, |
| 380 'perf_id': 'linux-release'}) | 381 'perf_id': 'linux-release'}) |
| 381 | 382 |
| 382 f_cr_rel_linux_lowmem = F_LINUX( | 383 f_cr_rel_linux_lowmem = F_LINUX( |
| 383 slave_type='Tester', | 384 slave_type='Tester', |
| 384 build_url=chromium_rel_linux_archive, | 385 build_url=chromium_rel_linux_archive, |
| 385 tests=['page_cycler_moz', 'page_cycler_morejs', 'page_cycler_intl1', | 386 tests=['page_cycler_moz', 'page_cycler_morejs', 'page_cycler_intl1', |
| 386 'page_cycler_intl2', 'page_cycler_dhtml', 'page_cycler_database', | 387 'page_cycler_intl2', 'page_cycler_dhtml', 'page_cycler_database', |
| 387 'page_cycler_indexeddb', 'startup', 'dom_perf', 'tab_switching', | 388 'page_cycler_indexeddb', 'startup', 'dom_perf', 'tab_switching', |
| 388 'memory', 'sunspider', 'v8_benchmark', 'page_cycler_moz-http', | 389 'memory', 'sunspider', 'v8_benchmark', 'page_cycler_moz-http', |
| 389 'page_cycler_bloat-http', 'frame_rate', 'sync'], | 390 'page_cycler_bloat-http', 'web_page_replay_2012Q2', |
| 391 'frame_rate', 'sync'], | |
| 390 factory_properties={ | 392 factory_properties={ |
| 391 'show_perf_results': True, | 393 'show_perf_results': True, |
| 392 'expectations': True, | 394 'expectations': True, |
| 393 'halt_on_missing_build': True, | 395 'halt_on_missing_build': True, |
| 394 'perf_id': 'linux-release-lowmem'}) | 396 'perf_id': 'linux-release-lowmem'}) |
| 395 | 397 |
| 396 # BuilderTesters using a custom build configuration. | 398 # BuilderTesters using a custom build configuration. |
| 397 | 399 |
| 398 f_cr_rel_mac_builder = F_MAC( | 400 f_cr_rel_mac_builder = F_MAC( |
| 399 slave_type='Builder', | 401 slave_type='Builder', |
| (...skipping 18 matching lines...) Expand all Loading... | |
| 418 # possible. | 420 # possible. |
| 419 f_cr_rel_mac5_perf_1 = RelMacPerfTester('chromium-rel-mac5', | 421 f_cr_rel_mac5_perf_1 = RelMacPerfTester('chromium-rel-mac5', |
| 420 ['page_cycler_moz', | 422 ['page_cycler_moz', |
| 421 'page_cycler_morejs', | 423 'page_cycler_morejs', |
| 422 'page_cycler_intl1', | 424 'page_cycler_intl1', |
| 423 'page_cycler_intl2', | 425 'page_cycler_intl2', |
| 424 'page_cycler_dhtml', | 426 'page_cycler_dhtml', |
| 425 'page_cycler_database', | 427 'page_cycler_database', |
| 426 'page_cycler_indexeddb', | 428 'page_cycler_indexeddb', |
| 427 'page_cycler_moz-http', | 429 'page_cycler_moz-http', |
| 428 'page_cycler_bloat-http']) | 430 'page_cycler_bloat-http', |
| 431 'web_page_replay_2012Q2']) | |
| 429 | 432 |
| 430 f_cr_rel_mac5_perf_2 = RelMacPerfTester('chromium-rel-mac5', | 433 f_cr_rel_mac5_perf_2 = RelMacPerfTester('chromium-rel-mac5', |
| 431 ['startup', 'tab_switching', 'memory', | 434 ['startup', 'tab_switching', 'memory', |
| 432 'v8_benchmark', 'sunspider', | 435 'v8_benchmark', 'sunspider', |
| 433 'dom_perf', 'dom_checker']) | 436 'dom_perf', 'dom_checker']) |
| 434 | 437 |
| 435 f_cr_rel_mac5_perf_3 = RelMacPerfTester('chromium-rel-mac5', | 438 f_cr_rel_mac5_perf_3 = RelMacPerfTester('chromium-rel-mac5', |
| 436 ['dromaeo', 'frame_rate', | 439 ['dromaeo', 'frame_rate', |
| 437 'mach_ports']) | 440 'mach_ports']) |
| 438 | 441 |
| 439 # Same setup as 10.5, just using 10.6 naming. | 442 # Same setup as 10.5, just using 10.6 naming. |
| 440 f_cr_rel_mac6_perf_1 = RelMacPerfTester('chromium-rel-mac6', | 443 f_cr_rel_mac6_perf_1 = RelMacPerfTester('chromium-rel-mac6', |
| 441 ['page_cycler_moz', | 444 ['page_cycler_moz', |
| 442 'page_cycler_morejs', | 445 'page_cycler_morejs', |
| 443 'page_cycler_intl1', | 446 'page_cycler_intl1', |
| 444 'page_cycler_intl2', | 447 'page_cycler_intl2', |
| 445 'page_cycler_dhtml', | 448 'page_cycler_dhtml', |
| 446 'page_cycler_database', | 449 'page_cycler_database', |
| 447 'page_cycler_indexeddb', | 450 'page_cycler_indexeddb', |
| 448 'page_cycler_moz-http', | 451 'page_cycler_moz-http', |
| 449 'page_cycler_bloat-http']) | 452 'page_cycler_bloat-http', |
| 453 'web_page_replay_2012Q2']) | |
| 450 | 454 |
| 451 f_cr_rel_mac6_perf_2 = RelMacPerfTester('chromium-rel-mac6', | 455 f_cr_rel_mac6_perf_2 = RelMacPerfTester('chromium-rel-mac6', |
| 452 ['startup', 'tab_switching', 'memory', | 456 ['startup', 'tab_switching', 'memory', |
| 453 'v8_benchmark', 'sunspider', | 457 'v8_benchmark', 'sunspider', |
| 454 'dom_perf', 'dom_checker']) | 458 'dom_perf', 'dom_checker']) |
| 455 | 459 |
| 456 f_cr_rel_mac6_perf_3 = RelMacPerfTester('chromium-rel-mac6', | 460 f_cr_rel_mac6_perf_3 = RelMacPerfTester('chromium-rel-mac6', |
| 457 ['dromaeo', 'frame_rate', | 461 ['dromaeo', 'frame_rate', |
| 458 'sync', 'mach_ports']) | 462 'sync', 'mach_ports']) |
| 459 | 463 |
| (...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 690 'memory_test', | 694 'memory_test', |
| 691 'new_tab_ui_cold_test', | 695 'new_tab_ui_cold_test', |
| 692 'new_tab_ui_warm_test', | 696 'new_tab_ui_warm_test', |
| 693 'page_cycler_bloat-http', | 697 'page_cycler_bloat-http', |
| 694 'page_cycler_dhtml', | 698 'page_cycler_dhtml', |
| 695 'page_cycler_intl1', | 699 'page_cycler_intl1', |
| 696 'page_cycler_intl2', | 700 'page_cycler_intl2', |
| 697 'page_cycler_morejs', | 701 'page_cycler_morejs', |
| 698 'page_cycler_moz', | 702 'page_cycler_moz', |
| 699 'page_cycler_moz-http', | 703 'page_cycler_moz-http', |
| 704 'web_page_replay_2012Q2', | |
| 700 'startup_test', | 705 'startup_test', |
| 701 'tab_switching_test', | 706 'tab_switching_test', |
| 702 'frame_rate_test', | 707 'frame_rate_test', |
| 703 'sync', | 708 'sync', |
| 704 ], | 709 ], |
| 705 'builders_windows': [], | 710 'builders_windows': [], |
| 706 'builders_compile': [] | 711 'builders_compile': [] |
| 707 } | 712 } |
| 708 exclusions = { } | 713 exclusions = { } |
| 709 forgiving_steps = [ ] | 714 forgiving_steps = [ ] |
| (...skipping 21 matching lines...) Expand all Loading... | |
| 731 c['projectName'] = ActiveMaster.project_name | 736 c['projectName'] = ActiveMaster.project_name |
| 732 c['projectURL'] = config.Master.project_url | 737 c['projectURL'] = config.Master.project_url |
| 733 | 738 |
| 734 # the 'buildbotURL' string should point to the location where the buildbot's | 739 # the 'buildbotURL' string should point to the location where the buildbot's |
| 735 # internal web server (usually the html.Waterfall page) is visible. This | 740 # internal web server (usually the html.Waterfall page) is visible. This |
| 736 # typically uses the port number set in the Waterfall 'status' entry, but | 741 # typically uses the port number set in the Waterfall 'status' entry, but |
| 737 # with an externally-visible host name which the buildbot cannot figure out | 742 # with an externally-visible host name which the buildbot cannot figure out |
| 738 # without some help. | 743 # without some help. |
| 739 | 744 |
| 740 c['buildbotURL'] = 'http://build.chromium.org/p/chromium.perf/' | 745 c['buildbotURL'] = 'http://build.chromium.org/p/chromium.perf/' |
| OLD | NEW |