aboutsummaryrefslogtreecommitdiffhomepage
path: root/public.bzl
diff options
context:
space:
mode:
authorGravatar Mike Klein <mtklein@chromium.org>2017-12-13 14:07:39 -0500
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-12-13 20:09:10 +0000
commitc1ff9168c798559a0787483e7079141bdf1aa643 (patch)
tree05b482af1d3999ad9c93dfb42f2b4223993e1afc /public.bzl
parent2d5f9b3d58e07ac8a8df17f4c0321cb65f255e69 (diff)
clean up float-cast-overflow blacklist
These should be free of overflows now. Bug: skia:7052 Change-Id: I05118fb8f565ffb0d973b6d93a8cd8d8e27f31a9 Reviewed-on: https://skia-review.googlesource.com/84561 Reviewed-by: Ben Wagner <benjaminwagner@google.com> Commit-Queue: Mike Klein <mtklein@chromium.org>
Diffstat (limited to 'public.bzl')
-rw-r--r--public.bzl12
1 files changed, 0 insertions, 12 deletions
diff --git a/public.bzl b/public.bzl
index 06ba3849c0..c346d7436c 100644
--- a/public.bzl
+++ b/public.bzl
@@ -540,18 +540,6 @@ def DM_ARGS(asan):
"~^PaintBreakText$$",
"~^RecordDraw_TextBounds$$",
]
- 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 += [
- "~^clippedcubic2$$",
- "~^PathOpsCubicIntersection$$",
- "~^PathOpsCubicLineIntersection$$",
- "~^PathOpsOpCubicsThreaded$$",
- "~^PathOpsOpLoopsThreaded$$",
- ]
return ["--src"] + source + ["--config"] + config + ["--match"] + match
################################################################################