Skip to content

Commit

Permalink
Attempt to fix OSS Fuzz
Browse files Browse the repository at this point in the history
  • Loading branch information
tdewolff committed Mar 19, 2021
1 parent 7b72a41 commit 9293bfa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/oss-fuzz-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ find parse/tests/* -maxdepth 0 -type d | while read target
do
cd $root/$target
fuzz_target=`echo $target | rev | cut -d'/' -f 1 | rev`
compile_go_fuzzer github.com/tdewolff/parse/tests/$fuzz_target Fuzz parse-$fuzz_target gofuzz
compile_go_fuzzer . Fuzz parse-$fuzz_target gofuzz
done

find minify/tests/* -maxdepth 0 -type d | while read target
do
cd $root/$target
fuzz_target=`echo $target | rev | cut -d'/' -f 1 | rev`
compile_go_fuzzer github.com/tdewolff/minify/tests/$fuzz_target Fuzz minify-$fuzz_target gofuzz
compile_go_fuzzer . Fuzz minify-$fuzz_target gofuzz
done

0 comments on commit 9293bfa

Please sign in to comment.