diff options
author | phajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-06-09 12:46:18 +0000 |
---|---|---|
committer | phajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-06-09 12:46:18 +0000 |
commit | aa501438095cde05a397f14fabe66f08a4e3b205 (patch) | |
tree | fcfb2a282bc0c39d6663f2f4a5b1e99d9129af80 /PRESUBMIT.py | |
parent | 61487edaf232c6bf0de5924c1a31d529bc4610a0 (diff) | |
download | chromium_src-aa501438095cde05a397f14fabe66f08a4e3b205.zip chromium_src-aa501438095cde05a397f14fabe66f08a4e3b205.tar.gz chromium_src-aa501438095cde05a397f14fabe66f08a4e3b205.tar.bz2 |
Remove from PRESUBMIT.py builders that will get removed from the tryserver
See https://codereview.chromium.org/323483002/
BUG=380709
R=kjellander@chromium.org
Review URL: https://codereview.chromium.org/320823002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@275798 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'PRESUBMIT.py')
-rw-r--r-- | PRESUBMIT.py | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/PRESUBMIT.py b/PRESUBMIT.py index 30dbb19..67d496d 100644 --- a/PRESUBMIT.py +++ b/PRESUBMIT.py @@ -1497,71 +1497,18 @@ def GetDefaultTryConfigs(bots=None): 'linux_chromium_clang_dbg': ['defaulttests'], 'linux_gpu': ['defaulttests'], 'linux_nacl_sdk_build': ['compile'], - 'linux_rel': [ - 'telemetry_perf_unittests', - 'telemetry_unittests', - ], 'mac_chromium_compile_dbg': ['defaulttests'], 'mac_chromium_rel': ['defaulttests'], 'mac_gpu': ['defaulttests'], 'mac_nacl_sdk_build': ['compile'], - 'mac_rel': [ - 'telemetry_perf_unittests', - 'telemetry_unittests', - ], - 'win': ['compile'], 'win_chromium_compile_dbg': ['defaulttests'], 'win_chromium_dbg': ['defaulttests'], 'win_chromium_rel': ['defaulttests'], 'win_chromium_x64_rel': ['defaulttests'], 'win_gpu': ['defaulttests'], 'win_nacl_sdk_build': ['compile'], - 'win_rel': standard_tests + [ - 'app_list_unittests', - 'ash_unittests', - 'aura_unittests', - 'cc_unittests', - 'chrome_elf_unittests', - 'chromedriver_unittests', - 'components_unittests', - 'compositor_unittests', - 'events_unittests', - 'gfx_unittests', - 'google_apis_unittests', - 'installer_util_unittests', - 'test_mini_installer', - 'nacl_integration', - 'remoting_unittests', - 'sync_integration_tests', - 'telemetry_perf_unittests', - 'telemetry_unittests', - 'views_unittests', - ], - 'win_x64_rel': [ - 'base_unittests', - ], } - swarm_enabled_builders = ( - # http://crbug.com/354263 - # 'linux_rel', - # 'mac_rel', - # 'win_rel', - ) - - swarm_enabled_tests = ( - 'base_unittests', - 'browser_tests', - 'interactive_ui_tests', - 'net_unittests', - 'unit_tests', - ) - - for bot in builders_and_tests: - if bot in swarm_enabled_builders: - builders_and_tests[bot] = [x + '_swarm' if x in swarm_enabled_tests else x - for x in builders_and_tests[bot]] - if bots: filtered_builders_and_tests = dict((bot, set(builders_and_tests[bot])) for bot in bots) |