tint: Disable tint_concurrency_fuzzer for win+asan
This combination uses a suspiciously high amount of memory, triggering the fuzzer limits of 2560MB. Tint doesn't really have any OS specific code paths, so we should still have good coverage with ASAN builds for other OSes. Fixed: chromium:1357188 Change-Id: I4c7001f7e194ff46b2e8da635ddccdb04d60b838 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/105140 Commit-Queue: Corentin Wallez <cwallez@chromium.org> Reviewed-by: Corentin Wallez <cwallez@chromium.org> Auto-Submit: Ben Clayton <bclayton@google.com> Kokoro: Kokoro <noreply+kokoro@google.com>
This commit is contained in:
parent
cc636273da
commit
c8f1075310
|
@ -163,13 +163,16 @@ if (build_with_chromium) {
|
|||
seed_corpus_deps = [ ":tint_generate_wgsl_corpus" ]
|
||||
}
|
||||
|
||||
fuzzer_test("tint_concurrency_fuzzer") {
|
||||
sources = [ "tint_concurrency_fuzzer.cc" ]
|
||||
deps = [ ":tint_fuzzer_common_with_init_src" ]
|
||||
dict = "dictionary.txt"
|
||||
libfuzzer_options = tint_fuzzer_common_libfuzzer_options
|
||||
seed_corpus = fuzzer_corpus_wgsl_dir
|
||||
seed_corpus_deps = [ ":tint_generate_wgsl_corpus" ]
|
||||
# Disable this fuzzer on windows + ASAN. See crbug.com/1357188.
|
||||
if (!(is_win && is_asan)) {
|
||||
fuzzer_test("tint_concurrency_fuzzer") {
|
||||
sources = [ "tint_concurrency_fuzzer.cc" ]
|
||||
deps = [ ":tint_fuzzer_common_with_init_src" ]
|
||||
dict = "dictionary.txt"
|
||||
libfuzzer_options = tint_fuzzer_common_libfuzzer_options
|
||||
seed_corpus = fuzzer_corpus_wgsl_dir
|
||||
seed_corpus_deps = [ ":tint_generate_wgsl_corpus" ]
|
||||
}
|
||||
}
|
||||
|
||||
fuzzer_test("tint_first_index_offset_fuzzer") {
|
||||
|
|
Loading…
Reference in New Issue