mirror of
https://github.com/curl/curl.git
synced 2026-08-25 06:03:32 +03:00
fuzz: corpora file structure, initial commit
This commit is contained in:
parent
b9ead67e12
commit
fd3aa8da0a
6 changed files with 79 additions and 15 deletions
|
|
@ -1,19 +1,19 @@
|
|||
FUZZER_HTTP11 = curl_fuzzer.c
|
||||
FUZZER_HTTP11_CPPFLAGS = $(AM_CPPFLAGS)
|
||||
FUZZPROGS = http11 ftp imap pop3 httpupload http2
|
||||
|
||||
http11_SOURCES = curl_fuzzer.c
|
||||
http11_CPPFLAGS = $(AM_CPPFLAGS)
|
||||
|
||||
FUZZER_FTP = curl_fuzzer.c
|
||||
FUZZER_FTP_CPPFLAGS = -DFUZZER_FTP $(AM_CPPFLAGS)
|
||||
ftp_SOURCES = curl_fuzzer.c
|
||||
ftp_CPPFLAGS = -DFUZZER_FTP $(AM_CPPFLAGS)
|
||||
|
||||
FUZZER_IMAP = curl_fuzzer.c
|
||||
FUZZER_IMAP_CPPFLAGS = -DFUZZER_IMAP $(AM_CPPFLAGS)
|
||||
imap_SOURCES = curl_fuzzer.c
|
||||
imap_CPPFLAGS = -DFUZZER_IMAP $(AM_CPPFLAGS)
|
||||
|
||||
FUZZER_POP3 = curl_fuzzer.c
|
||||
FUZZER_POP3_CPPFLAGS = -DFUZZER_POP3 $(AM_CPPFLAGS)
|
||||
pop3_SOURCES = curl_fuzzer.c
|
||||
pop3_CPPFLAGS = -DFUZZER_POP3 $(AM_CPPFLAGS)
|
||||
|
||||
FUZZER_HTTP_UPLOAD = curl_fuzzer.c
|
||||
FUZZER_HTTP_UPLOAD_CPPFLAGS = -DFUZZER_HTTP_UPLOAD $(AM_CPPFLAGS)
|
||||
httpupload_SOURCES = curl_fuzzer.c
|
||||
httpupload_CPPFLAGS = -DFUZZER_HTTP_UPLOAD $(AM_CPPFLAGS)
|
||||
|
||||
|
||||
FUZZER_HTTP2 = curl_fuzzer.c
|
||||
FUZZER_HTTP2_CPPFLAGS = -DFUZZER_HTTP2 $(AM_CPPFLAGS)
|
||||
http2_SOURCES = curl_fuzzer.c
|
||||
http2_CPPFLAGS = -DFUZZER_HTTP2 $(AM_CPPFLAGS)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue