aboutsummaryrefslogtreecommitdiffhomepage
path: root/public.bzl
diff options
context:
space:
mode:
authorGravatar Ben Wagner <benjaminwagner@google.com>2017-09-12 19:33:38 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-09-13 00:55:50 +0000
commit56e9d4a5791f5fe84de310c03d97cc1bc275dc9e (patch)
tree8fa9b1e90ffa5df9e6fd984ce01cdfb6292bd66f /public.bzl
parent79a3aafc34c1a1b561f9fbb415b12cb1ff4772dd (diff)
Update omitted Bazel tests.
Match based on the whole test name. No-Try: true Change-Id: I03c180195f5854f30e521e2772dcb7e44f1cc3b8 Reviewed-on: https://skia-review.googlesource.com/46000 Commit-Queue: Mike Klein <mtklein@google.com> Reviewed-by: Mike Klein <mtklein@google.com>
Diffstat (limited to 'public.bzl')
-rw-r--r--public.bzl43
1 files changed, 17 insertions, 26 deletions
diff --git a/public.bzl b/public.bzl
index c7e47d500f..e8325500a0 100644
--- a/public.bzl
+++ b/public.bzl
@@ -574,37 +574,28 @@ def DM_ARGS(asan):
config = ["565", "8888", "pdf", "srgb"]
# TODO(mtklein): maybe investigate why these fail?
match = [
- "~Canvas",
- "~Codec",
- "~Codec_Dimensions",
- "~Codec_stripes",
- "~FontMgr",
- "~PaintBreakText",
- "~RecordDraw_TextBounds",
- "~Scalar",
- "~skps",
- "~Stream",
+ "~^FontHostStream$$",
+ "~^FontMgr$$",
+ "~^PaintBreakText$$",
+ "~^RecordDraw_TextBounds$$",
]
if asan:
# The ASAN we use with Bazel has some strict checks, so omit tests that
# trigger them.
match += [
- "~bigrect",
- "~clippedcubic2",
- "~conicpaths",
- "~^gradients",
- "~Math",
- "~Matrix",
- "~PathBigCubic",
- "~PathOpsCubic",
- "~PathOpsFailOp",
- "~PathOpsOpCubicsThreaded",
- "~PathOpsOpLoopsThreaded",
- "~PathOpsSimplify",
- "~PathOpsTightBoundsQuads",
- "~Point",
- "~sk_linear_to_srgb",
- "~small_color_stop",
+ "~^bigrect$$",
+ "~^clippedcubic2$$",
+ "~^conicpaths$$",
+ "~^DashPathEffectTest_asPoints_limit$$",
+ "~^Matrix$$",
+ "~^Matrix44$$",
+ "~^PathBigCubic$$",
+ "~^PathOpsCubicIntersection$$",
+ "~^PathOpsCubicLineIntersection$$",
+ "~^PathOpsFailOp$$",
+ "~^PathOpsOpCubicsThreaded$$",
+ "~^PathOpsOpLoopsThreaded$$",
+ "~^Point$$",
]
return ["--src"] + source + ["--config"] + config + ["--match"] + match