Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: rust-lang/regex
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: addisoncrump/regex
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Able to merge. These branches can be automatically merged.
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on Jul 15, 2023

  1. Verified

    This commit was signed with the committer’s verified signature.
    addisoncrump Addison Crump
    Copy the full SHA
    a91d953 View commit details
Showing with 6 additions and 1 deletion.
  1. +2 −0 fuzz/ast-fuzzers.options
  2. +4 −1 fuzz/oss-fuzz-build.sh
2 changes: 2 additions & 0 deletions fuzz/ast-fuzzers.options
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[libfuzzer]
max_len = 65536
5 changes: 4 additions & 1 deletion fuzz/oss-fuzz-build.sh
Original file line number Diff line number Diff line change
@@ -14,5 +14,8 @@ targets=(
ast_fuzz_match_bytes
)
for target in "${targets[@]}"; do
cp fuzz/target/x86_64-unknown-linux-gnu/release/$target $OUT/
cp "fuzz/target/x86_64-unknown-linux-gnu/release/${target}" "${OUT}/"
if [[ "$target" == ast_* ]]; then
cp fuzz/ast-fuzzers.options "${OUT}/${target}.options"
fi
done