We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 855c5c4 commit a91d953Copy full SHA for a91d953
fuzz/ast-fuzzers.options
@@ -0,0 +1,2 @@
1
+[libfuzzer]
2
+max_len = 65536
fuzz/oss-fuzz-build.sh
@@ -14,5 +14,8 @@ targets=(
14
ast_fuzz_match_bytes
15
)
16
for target in "${targets[@]}"; do
17
- cp fuzz/target/x86_64-unknown-linux-gnu/release/$target $OUT/
+ cp "fuzz/target/x86_64-unknown-linux-gnu/release/${target}" "${OUT}/"
18
+ if [[ "$target" == ast_* ]]; then
19
+ cp fuzz/ast-fuzzers.options "${OUT}/${target}.options"
20
+ fi
21
done
0 commit comments