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

Unified Diff: net/BUILD.gn

Issue 2291133002: Add fuzzer for ParseURLHostnameToAddress to //net. (Closed)
Patch Set: Created 4 years, 4 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
Index: net/BUILD.gn
diff --git a/net/BUILD.gn b/net/BUILD.gn
index 38af57171b315afb085d3649ade09c5379b3d24d..a12edb9ac1d391dd0ecf88685417f1dc3d937b99 100644
--- a/net/BUILD.gn
+++ b/net/BUILD.gn
@@ -1969,6 +1969,19 @@ fuzzer_test("net_http_proxy_client_socket_fuzzer") {
dict = "data/fuzzer_dictionaries/net_http_proxy_client_socket_fuzzer.dict"
}
+fuzzer_test("net_parse_url_hostname_to_address_fuzzer") {
+ sources = [
+ "base/parse_url_hostname_to_address_fuzzer.cc",
+ ]
+ deps = [
+ ":net_fuzzer_test_support",
+ "//base",
+ "//net",
+ ]
+ libfuzzer_options = [ "max_len=512" ]
+ seed_corpus = "data/fuzzer_data/hostnames/"
+}
+
fuzzer_test("net_quic_crypto_framer_parse_message_fuzzer") {
sources = [
"quic/core/quic_crypto_framer_parse_message_fuzzer.cc",
« no previous file with comments | « no previous file | net/base/parse_url_hostname_to_address_fuzzer.cc » ('j') | net/base/parse_url_hostname_to_address_fuzzer.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698