aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Marten Seemann <martenseemann@gmail.com>2020-09-03 12:20:37 +0700
committerGravatar GitHub <noreply@github.com>2020-09-02 22:20:37 -0700
commit1070d8fd12c4b79112aadc98307d99a0daa14497 (patch)
treee369cdb11ad82777aa62442e2a034161c38a5857
parenta8263735f514122679260999329c6d4a3cbcd688 (diff)
[quic-go] add fuzzing for the handshake (#4404)
-rw-r--r--projects/quic-go/build.sh2
1 files changed, 2 insertions, 0 deletions
diff --git a/projects/quic-go/build.sh b/projects/quic-go/build.sh
index 1d4da21b..41f03185 100644
--- a/projects/quic-go/build.sh
+++ b/projects/quic-go/build.sh
@@ -37,6 +37,7 @@ compile_fuzzer github.com/lucas-clemente/quic-go/fuzzing/frames Fuzz frame_fuzze
compile_fuzzer github.com/lucas-clemente/quic-go/fuzzing/header Fuzz header_fuzzer
compile_fuzzer github.com/lucas-clemente/quic-go/fuzzing/transportparameters Fuzz transportparameter_fuzzer
compile_fuzzer github.com/lucas-clemente/quic-go/fuzzing/tokens Fuzz token_fuzzer
+compile_fuzzer github.com/lucas-clemente/quic-go/fuzzing/handshake Fuzz handshake_fuzzer
# generate seed corpora
go generate $GOPATH/src/github.com/lucas-clemente/quic-go/fuzzing/...
@@ -44,6 +45,7 @@ go generate $GOPATH/src/github.com/lucas-clemente/quic-go/fuzzing/...
zip --quiet -r $OUT/header_fuzzer_seed_corpus.zip $GOPATH/src/github.com/lucas-clemente/quic-go/fuzzing/header/corpus
zip --quiet -r $OUT/frame_fuzzer_seed_corpus.zip $GOPATH/src/github.com/lucas-clemente/quic-go/fuzzing/frames/corpus
zip --quiet -r $OUT/transportparameter_fuzzer_seed_corpus.zip $GOPATH/src/github.com/lucas-clemente/quic-go/fuzzing/transportparameters/corpus
+zip --quiet -r $OUT/handshake_fuzzer_seed_corpus.zip $GOPATH/src/github.com/lucas-clemente/quic-go/fuzzing/handshake/corpus
# for debugging
ls -al $OUT