diff options
author | Ben Wagner <benjaminwagner@google.com> | 2018-06-26 15:22:07 -0400 |
---|---|---|
committer | Skia Commit-Bot <skia-commit-bot@chromium.org> | 2018-06-26 20:15:12 +0000 |
commit | 9396bc3fc63df48c8e3aaee3e4f46c6ea4539e5f (patch) | |
tree | 1f30cf665f6fb64b8211087cc841ea845f07d973 | |
parent | d47fe095cf88e68418915abe9d75ae9e40d07d6b (diff) |
[Bazel] Omit new test that causes infinite loop in libjpeg-turbo.
This test was added in
https://skia-review.googlesource.com/c/skia/+/129459, but the fix is not
yet in a libjpeg-turbo release.
No-Try: true
Change-Id: Ib7dce7a022934918f9f2e3467849d3e81cbf14cd
Reviewed-on: https://skia-review.googlesource.com/137703
Auto-Submit: Ben Wagner <benjaminwagner@google.com>
Reviewed-by: Leon Scroggins <scroggo@google.com>
Commit-Queue: Leon Scroggins <scroggo@google.com>
-rw-r--r-- | public.bzl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/public.bzl b/public.bzl index b99c60c985..aaf7555429 100644 --- a/public.bzl +++ b/public.bzl @@ -562,7 +562,9 @@ def DM_ARGS(asan): source = ["tests", "gm", "image"] # TODO(benjaminwagner): f16, pic-8888, serialize-8888, and tiles_rt-8888 fail. config = ["565", "8888", "pdf"] - return ["--src"] + source + ["--config"] + config + ["--nonativeFonts"] + match = ["~Codec_78329453"] + return (["--src"] + source + ["--config"] + config + ["--nonativeFonts"] + + ["--match"] + match) ################################################################################ ## COPTS |