Commit 3977260c authored by mmoroz's avatar mmoroz Committed by Commit bot

[libfuzzer] Blacklist skia_path_fuzzer and skia_pathop_fuzzer for Debug build.

R=mbarbella@chromium.org, ochang@chromium.org
BUG=643275

Review-Url: https://codereview.chromium.org/2340813002
Cr-Commit-Position: refs/heads/master@{#418851}
parent 04afc10b
......@@ -379,6 +379,10 @@ fuzzer_test("skia_path_fuzzer") {
"//skia",
]
libfuzzer_options = [ "max_len=256" ]
if (is_debug) {
# Disabled due to crashing on SkASSERT (crbug.com/642750, crbug.com/643275).
additional_configs = [ "//testing/libfuzzer:no_clusterfuzz" ]
}
}
fuzzer_test("skia_pathop_fuzzer") {
......@@ -391,4 +395,8 @@ fuzzer_test("skia_pathop_fuzzer") {
"//skia",
]
libfuzzer_options = [ "max_len=512" ]
if (is_debug) {
# Disabled due to crashing on SkASSERT (crbug.com/642750, crbug.com/643275).
additional_configs = [ "//testing/libfuzzer:no_clusterfuzz" ]
}
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment