Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(192)

Unified Diff: testing/libfuzzer/fuzzers/BUILD.gn

Issue 1955993002: [libfuzzer] flatbuffers verifier fuzzer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: added seed Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | testing/libfuzzer/fuzzers/flatbuffers_corpus/monsterdata_test.mon » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: testing/libfuzzer/fuzzers/BUILD.gn
diff --git a/testing/libfuzzer/fuzzers/BUILD.gn b/testing/libfuzzer/fuzzers/BUILD.gn
index 224162986901cbfde97d0b35855b40eb9b9fa317..5f9bebfabd56ada036d77df33695615bf2258b3d 100644
--- a/testing/libfuzzer/fuzzers/BUILD.gn
+++ b/testing/libfuzzer/fuzzers/BUILD.gn
@@ -286,3 +286,15 @@ fuzzer_test("convert_woff2ttf_fuzzer") {
seed_corpus = "//testing/libfuzzer/fuzzers/woff2_corpus"
libfuzzer_options = [ "max_len=803500" ]
}
+
+fuzzer_test("flatbuffers_verifier_fuzzer") {
+ sources = [
+ "flatbuffers_verifier_fuzzer.cc",
+ ]
+ deps = [
+ "//third_party/flatbuffers",
+ "//third_party/flatbuffers:flatbuffers_samplebuffer",
+ ]
+ libfuzzer_options = [ "max_len=1024" ]
+ seed_corpus = "//testing/libfuzzer/fuzzers/flatbuffers_corpus"
+}
« no previous file with comments | « no previous file | testing/libfuzzer/fuzzers/flatbuffers_corpus/monsterdata_test.mon » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698