Commit 8098d705 authored by Yuke Liao's avatar Yuke Liao Committed by Commit Bot

[code coverage] Skip instrumenting files that has triggers a SI bug

Change-Id: I4c1ba8139847fd6a72f0d9ba6e0e1f8d62d927b1
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1736893Reviewed-by: default avatarTakumi Fujimoto <takumif@chromium.org>
Commit-Queue: Takumi Fujimoto <takumif@chromium.org>
Auto-Submit: Yuke Liao <liaoyuke@chromium.org>
Cr-Commit-Position: refs/heads/master@{#684181}
parent 944e7275
...@@ -64,6 +64,16 @@ _COVERAGE_FLAGS = [ ...@@ -64,6 +64,16 @@ _COVERAGE_FLAGS = [
# apply to all platforms that don't have their own specific list. # apply to all platforms that don't have their own specific list.
_COVERAGE_EXCLUSION_LIST_MAP = { _COVERAGE_EXCLUSION_LIST_MAP = {
'default': [], 'default': [],
'linux': [
# These files caused a static initializer to be generated, which
# shouldn't.
# TODO(crbug.com/990948): Remove when the bug is fixed.
'../../chrome/browser/media/router/providers/cast/cast_internal_message_util.cc', #pylint: disable=line-too-long
'../../chrome/common/media_router/providers/cast/cast_media_source.cc',
'../../components/cast_channel/cast_channel_enum.cc',
'../../components/cast_channel/cast_message_util.cc'
],
'chromeos': [ 'chromeos': [
# These files caused clang to crash while compiling them. They are # These files caused clang to crash while compiling them. They are
# excluded pending an investigation into the underlying compiler bug. # excluded pending an investigation into the underlying compiler bug.
......
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