Commit 6fd67902 authored by zty's avatar zty Committed by Commit bot

Disable findbugs on emma_coverage=1 bots.

BUG=411131
R=navabi@chromium.org

Review URL: https://codereview.chromium.org/614083003

Cr-Commit-Position: refs/heads/master@{#297480}
parent 526afc35
...@@ -118,6 +118,7 @@ def GetBotStepMap(): ...@@ -118,6 +118,7 @@ def GetBotStepMap():
chrome_proxy_tests = ['chrome_proxy'] chrome_proxy_tests = ['chrome_proxy']
chrome_sync_shell_tests = ['sync'] chrome_sync_shell_tests = ['sync']
std_host_tests = ['check_webview_licenses', 'findbugs'] std_host_tests = ['check_webview_licenses', 'findbugs']
emma_coverage_tests = [x for x in std_host_tests if x is not 'findbugs']
std_build_steps = ['compile', 'zip_build'] std_build_steps = ['compile', 'zip_build']
std_test_steps = ['extract_build'] std_test_steps = ['extract_build']
std_tests = ['ui', 'unit', 'mojo'] std_tests = ['ui', 'unit', 'mojo']
...@@ -160,7 +161,7 @@ def GetBotStepMap(): ...@@ -160,7 +161,7 @@ def GetBotStepMap():
B('fyi-x86-builder-dbg', B('fyi-x86-builder-dbg',
H(compile_step + std_host_tests, experimental, target_arch='ia32')), H(compile_step + std_host_tests, experimental, target_arch='ia32')),
B('fyi-builder-dbg', B('fyi-builder-dbg',
H(std_build_steps + std_host_tests, experimental, H(std_build_steps + emma_coverage_tests, experimental,
extra_gyp='emma_coverage=1')), extra_gyp='emma_coverage=1')),
B('x86-builder-dbg', B('x86-builder-dbg',
H(compile_step + std_host_tests, target_arch='ia32')), H(compile_step + std_host_tests, target_arch='ia32')),
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment