From 56e9d4a5791f5fe84de310c03d97cc1bc275dc9e Mon Sep 17 00:00:00 2001 From: Ben Wagner Date: Tue, 12 Sep 2017 19:33:38 -0400 Subject: 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 Reviewed-by: Mike Klein --- public.bzl | 43 +++++++++++++++++-------------------------- 1 file changed, 17 insertions(+), 26 deletions(-) (limited to 'public.bzl') 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 -- cgit v1.2.3