Commit 028442d9 authored by ahaas's avatar ahaas Committed by Commit bot

[libfuzzer][v8][wasm] Add new WebAssembly fuzzers.

This CL introduces seven new fuzzers for WebAssembly which test the
decoding of single sections in the WebAssembly module decoder.

R=mmoroz@chromium.org

Review-Url: https://codereview.chromium.org/2344823002
Cr-Commit-Position: refs/heads/master@{#418828}
parent 9e619bec
...@@ -269,6 +269,62 @@ fuzzer_test("v8_wasm_asmjs_fuzzer") { ...@@ -269,6 +269,62 @@ fuzzer_test("v8_wasm_asmjs_fuzzer") {
libfuzzer_options = [ "max_len=500" ] libfuzzer_options = [ "max_len=500" ]
} }
fuzzer_test("v8_wasm_data_section_fuzzer") {
sources = []
deps = [
"//v8:wasm_data_section_fuzzer",
]
libfuzzer_options = [ "max_len=500" ]
}
fuzzer_test("v8_wasm_function_sigs_section_fuzzer") {
sources = []
deps = [
"//v8:wasm_function_sigs_section_fuzzer",
]
libfuzzer_options = [ "max_len=500" ]
}
fuzzer_test("v8_wasm_globals_section_fuzzer") {
sources = []
deps = [
"//v8:wasm_globals_section_fuzzer",
]
libfuzzer_options = [ "max_len=500" ]
}
fuzzer_test("v8_wasm_imports_section_fuzzer") {
sources = []
deps = [
"//v8:wasm_imports_section_fuzzer",
]
libfuzzer_options = [ "max_len=500" ]
}
fuzzer_test("v8_wasm_memory_section_fuzzer") {
sources = []
deps = [
"//v8:wasm_memory_section_fuzzer",
]
libfuzzer_options = [ "max_len=500" ]
}
fuzzer_test("v8_wasm_names_section_fuzzer") {
sources = []
deps = [
"//v8:wasm_names_section_fuzzer",
]
libfuzzer_options = [ "max_len=500" ]
}
fuzzer_test("v8_wasm_types_section_fuzzer") {
sources = []
deps = [
"//v8:wasm_types_section_fuzzer",
]
libfuzzer_options = [ "max_len=500" ]
}
fuzzer_test("third_party_re2_fuzzer") { fuzzer_test("third_party_re2_fuzzer") {
sources = [ sources = [
"re2_fuzzer.cc", "re2_fuzzer.cc",
......
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