-
-
Notifications
You must be signed in to change notification settings - Fork 139
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support Go 1.21 #136
Support Go 1.21 #136
Conversation
compile_go_fuzzer github.com/quic-go/quic-go/fuzzing/tokens Fuzz token_fuzzer | ||
compile_go_fuzzer github.com/quic-go/quic-go/fuzzing/handshake Fuzz handshake_fuzzer | ||
|
||
if [ $SANITIZER == "coverage" ]; then |
Check notice
Code scanning / shellcheck
Double quote to prevent globbing and word splitting.
fi | ||
|
||
# generate seed corpora | ||
cd $GOPATH/src/github.com/quic-go/quic-go/ |
Check warning
Code scanning / shellcheck
Use 'cd ... || exit' or 'cd ... || return' in case cd fails.
fi | ||
|
||
# generate seed corpora | ||
cd $GOPATH/src/github.com/quic-go/quic-go/ |
Check notice
Code scanning / shellcheck
Double quote to prevent globbing and word splitting.
cd $GOPATH/src/github.com/quic-go/quic-go/ | ||
go generate -x ./fuzzing/... | ||
|
||
zip --quiet -r $OUT/header_fuzzer_seed_corpus.zip fuzzing/header/corpus |
Check notice
Code scanning / shellcheck
Double quote to prevent globbing and word splitting.
go generate -x ./fuzzing/... | ||
|
||
zip --quiet -r $OUT/header_fuzzer_seed_corpus.zip fuzzing/header/corpus | ||
zip --quiet -r $OUT/frame_fuzzer_seed_corpus.zip fuzzing/frames/corpus |
Check notice
Code scanning / shellcheck
Double quote to prevent globbing and word splitting.
|
||
zip --quiet -r $OUT/header_fuzzer_seed_corpus.zip fuzzing/header/corpus | ||
zip --quiet -r $OUT/frame_fuzzer_seed_corpus.zip fuzzing/frames/corpus | ||
zip --quiet -r $OUT/transportparameter_fuzzer_seed_corpus.zip fuzzing/transportparameters/corpus |
Check notice
Code scanning / shellcheck
Double quote to prevent globbing and word splitting.
zip --quiet -r $OUT/header_fuzzer_seed_corpus.zip fuzzing/header/corpus | ||
zip --quiet -r $OUT/frame_fuzzer_seed_corpus.zip fuzzing/frames/corpus | ||
zip --quiet -r $OUT/transportparameter_fuzzer_seed_corpus.zip fuzzing/transportparameters/corpus | ||
zip --quiet -r $OUT/handshake_fuzzer_seed_corpus.zip fuzzing/handshake/corpus |
Check notice
Code scanning / shellcheck
Double quote to prevent globbing and word splitting.
) | ||
|
||
# for debugging | ||
ls -al $OUT |
Check notice
Code scanning / shellcheck
Double quote to prevent globbing and word splitting.
Thanks for the PR! I'll test and merge it. |
Bumps quic-go to 0.37.0: https://github.com/quic-go/quic-go/releases/tag/v0.37.0 with Go 1.20 and 1.21 support