aboutsummaryrefslogtreecommitdiffhomepage
path: root/public.bzl
diff options
context:
space:
mode:
authorGravatar Ben Wagner <benjaminwagner@google.com>2017-10-17 18:19:37 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-10-18 00:03:04 +0000
commit54b221311cdc54b459c3217d8854721e3bc8bf39 (patch)
treea75f23354691d3b959cc07de3e48c22e81297306 /public.bzl
parentd71c6d1994f606e3260304589784f8b9ae69abec (diff)
Synchronize public.bzl float-cast-overflow omit list with test.py.
No-Try: true Change-Id: If4320eae12e4967ee59a230549bbd34fca2fed94 Reviewed-on: https://skia-review.googlesource.com/60883 Reviewed-by: Mike Klein <mtklein@chromium.org> Commit-Queue: Ben Wagner <benjaminwagner@google.com>
Diffstat (limited to 'public.bzl')
-rw-r--r--public.bzl10
1 files changed, 2 insertions, 8 deletions
diff --git a/public.bzl b/public.bzl
index 628301d3d9..b07f2d8875 100644
--- a/public.bzl
+++ b/public.bzl
@@ -540,20 +540,14 @@ def DM_ARGS(asan):
if asan:
# The ASAN we use with Bazel has some strict checks, so omit tests that
# trigger them.
+ # All of the following are due to
+ # https://bugs.chromium.org/p/skia/issues/detail?id=7052
match += [
- "~^bigrect$$",
"~^clippedcubic2$$",
- "~^conicpaths$$",
- "~^DashPathEffectTest_asPoints_limit$$",
- "~^Matrix$$",
- "~^Matrix44$$",
- "~^PathBigCubic$$",
"~^PathOpsCubicIntersection$$",
"~^PathOpsCubicLineIntersection$$",
- "~^PathOpsFailOp$$",
"~^PathOpsOpCubicsThreaded$$",
"~^PathOpsOpLoopsThreaded$$",
- "~^Point$$",
]
return ["--src"] + source + ["--config"] + config + ["--match"] + match