hyperium: fix build. (#6257)

This commit is contained in:
DavidKorczynski 2021-08-20 12:59:45 +01:00 committed by GitHub
parent 7cb51f8a0a
commit 628264df27
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -24,3 +24,8 @@ cargo fuzz build -O
cp ./fuzz/target/x86_64-unknown-linux-gnu/release/fuzz_client $OUT/
cp ./fuzz/target/x86_64-unknown-linux-gnu/release/fuzz_e2e $OUT/
cp ./fuzz/target/x86_64-unknown-linux-gnu/release/fuzz_hpack $OUT/
for fuzz_name in fuzz_e2e fuzz_client; do
echo "[libfuzzer]" > $OUT/${fuzz_name}.options
echo "detect_leaks=0" >> $OUT/${fuzz_name}.options
done