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

Side by Side Diff: masters/master.chromium.fyi/master.cfg

Issue 11882038: Add components_unittests to bots (Closed) Base URL: https://git.chromium.org/chromium/tools/build.git@master
Patch Set: Created 7 years, 11 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 # vim: ft=python: 1 # vim: ft=python:
2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 from buildbot import locks 6 from buildbot import locks
7 from buildbot.changes import svnpoller 7 from buildbot.changes import svnpoller
8 from buildbot.scheduler import Dependent 8 from buildbot.scheduler import Dependent
9 from buildbot.scheduler import Nightly 9 from buildbot.scheduler import Nightly
10 from buildbot.scheduler import Periodic 10 from buildbot.scheduler import Periodic
(...skipping 577 matching lines...) Expand 10 before | Expand all | Expand 10 after
588 factory_properties={'process_dumps': True, 588 factory_properties={'process_dumps': True,
589 'start_crash_handler': True,}) 589 'start_crash_handler': True,})
590 590
591 f_chromium_linux_redux = linux().ChromiumFactory( 591 f_chromium_linux_redux = linux().ChromiumFactory(
592 tests=[ 592 tests=[
593 'base', 593 'base',
594 'cacheinvalidation', 594 'cacheinvalidation',
595 'crypto', 595 'crypto',
596 'device_unittests', 596 'device_unittests',
597 'jingle', 597 'jingle',
598 'net', 598 'net',
iannucci 2013/01/15 23:53:19 You'll need to add the unittest here too, if you w
kaiwang 2013/01/16 01:50:54 Removed from below
599 'unit', 599 'unit',
600 'check_deps2git', 600 'check_deps2git',
601 ], 601 ],
602 options=['base_unittests', 602 options=['base_unittests',
603 'cacheinvalidation_unittests', 603 'cacheinvalidation_unittests',
604 'components_unittests',
604 'content_unittests', 605 'content_unittests',
605 'crypto_unittests', 606 'crypto_unittests',
606 'device_unittests', 607 'device_unittests',
607 'googleurl_unittests', 608 'googleurl_unittests',
608 'ipc_tests', 609 'ipc_tests',
609 'jingle_unittests', 610 'jingle_unittests',
610 'media_unittests', 611 'media_unittests',
611 'net_unittests', 612 'net_unittests',
612 'ppapi_unittests', 613 'ppapi_unittests',
613 'printing_unittests', 614 'printing_unittests',
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
738 'gclient_env': { 739 'gclient_env': {
739 'GYP_DEFINES': 'build_for_tool=memcheck target_arch=ia32'}}) 740 'GYP_DEFINES': 'build_for_tool=memcheck target_arch=ia32'}})
740 741
741 f_chromium_rel_linux_tsan_v2 = linux().ChromiumFactory( 742 f_chromium_rel_linux_tsan_v2 = linux().ChromiumFactory(
742 target='Release', 743 target='Release',
743 slave_type='BuilderTester', 744 slave_type='BuilderTester',
744 options=[ 745 options=[
745 '--compiler=goma-clang', 746 '--compiler=goma-clang',
746 '--build-tool=ninja', 747 '--build-tool=ninja',
747 'base_unittests', 748 'base_unittests',
749 'components_unittests',
748 'content_unittests', 750 'content_unittests',
749 'ipc_tests', 751 'ipc_tests',
750 'media_unittests', 752 'media_unittests',
751 'net_unittests', 753 'net_unittests',
752 'remoting_unittests', 754 'remoting_unittests',
753 'unit_tests', 755 'unit_tests',
754 ], 756 ],
755 factory_properties={ 757 factory_properties={
756 'tsan': True, 758 'tsan': True,
757 'gclient_env': { 759 'gclient_env': {
758 'GYP_DEFINES': ('tsan=1 ' 760 'GYP_DEFINES': ('tsan=1 '
759 'linux_use_tcmalloc=0 ' 761 'linux_use_tcmalloc=0 '
760 'release_extra_cflags="-gline-tables-only" ' 762 'release_extra_cflags="-gline-tables-only" '
761 'disable_nacl=1 '), 763 'disable_nacl=1 '),
762 'GYP_GENERATORS': 'ninja', }}, 764 'GYP_GENERATORS': 'ninja', }},
763 tests=[ 765 tests=[
764 'base', 766 'base',
767 'components_unittests',
765 'content_unittests', 768 'content_unittests',
766 'media', 769 'media',
767 'net', 770 'net',
768 'remoting', 771 'remoting',
769 'unit', 772 'unit',
770 ], 773 ],
771 ) 774 )
772 775
773 # GYP_DEFINES for running coverage. Why we do each: 776 # GYP_DEFINES for running coverage. Why we do each:
774 # coverage=1: turn it on! (e.g. add -ftest-coverage on Linux, enable 777 # coverage=1: turn it on! (e.g. add -ftest-coverage on Linux, enable
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
825 'tsan_rv_ipc', 828 'tsan_rv_ipc',
826 'tsan_rv_remoting', 829 'tsan_rv_remoting',
827 'tsan_rv_base', 830 'tsan_rv_base',
828 'tsan_rv_crypto', 831 'tsan_rv_crypto',
829 'tsan_rv_sync', 832 'tsan_rv_sync',
830 'tsan_rv_net', 833 'tsan_rv_net',
831 'tsan_rv_ui_unittests', 834 'tsan_rv_ui_unittests',
832 'tsan_rv_unit_1_of_2', 835 'tsan_rv_unit_1_of_2',
833 'tsan_rv_unit_2_of_2', 836 'tsan_rv_unit_2_of_2',
834 ], 837 ],
835 options=['content_unittests', 838 options=['components_unittests',
iannucci 2013/01/15 23:53:19 Maybe not here :)
kaiwang 2013/01/16 01:50:54 Done.
839 'content_unittests',
836 'device_unittests', 840 'device_unittests',
837 'googleurl_unittests', 841 'googleurl_unittests',
838 'ppapi_unittests', 842 'ppapi_unittests',
839 'printing_unittests', 843 'printing_unittests',
840 'media_unittests', 844 'media_unittests',
841 'sql_unittests', 845 'sql_unittests',
842 'ipc_tests', 846 'ipc_tests',
843 'remoting_unittests', 847 'remoting_unittests',
844 'base_unittests', 848 'base_unittests',
845 'crypto_unittests', 849 'crypto_unittests',
(...skipping 372 matching lines...) Expand 10 before | Expand all | Expand 10 after
1218 slave_type='Tester', 1222 slave_type='Tester',
1219 target='Release', 1223 target='Release',
1220 build_url=chromium_linux_arm_archive, 1224 build_url=chromium_linux_arm_archive,
1221 tests=[ 1225 tests=[
1222 'base', 1226 'base',
1223 'browser_tests', 1227 'browser_tests',
1224 'cacheinvalidation', 1228 'cacheinvalidation',
1225 'cc_unittests', 1229 'cc_unittests',
1226 'content_browsertests', 1230 'content_browsertests',
1227 'chromedriver2_unittests', 1231 'chromedriver2_unittests',
1232 'components_unittests',
1228 'content_unittests', 1233 'content_unittests',
1229 'crypto', 1234 'crypto',
1230 'dbus', 1235 'dbus',
1231 'device_unittests', 1236 'device_unittests',
1232 'googleurl', 1237 'googleurl',
1233 'gpu', 1238 'gpu',
1234 'interactive_ui', 1239 'interactive_ui',
1235 'jingle', 1240 'jingle',
1236 'media', 1241 'media',
1237 'net', 1242 'net',
(...skipping 775 matching lines...) Expand 10 before | Expand all | Expand 10 after
2013 subject='goma canary buildbot %(result)s in %(projectName)s ' 2018 subject='goma canary buildbot %(result)s in %(projectName)s '
2014 'on %(builder)s', 2019 'on %(builder)s',
2015 extraRecipients=['goma+alert@google.com'], 2020 extraRecipients=['goma+alert@google.com'],
2016 sendToInterestedUsers=False)) 2021 sendToInterestedUsers=False))
2017 2022
2018 2023
2019 ####### PROJECT IDENTITY 2024 ####### PROJECT IDENTITY
2020 2025
2021 # Buildbot master url: 2026 # Buildbot master url:
2022 c['buildbotURL'] = 'http://build.chromium.org/p/chromium.fyi/' 2027 c['buildbotURL'] = 'http://build.chromium.org/p/chromium.fyi/'
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698