Skip to content

Commit

Permalink
Remove execution permission on raw fuzztest fuzzer (AOMediaCodec#1936)
Browse files Browse the repository at this point in the history
This is to try to remove it from the list of official fuzzers on
https://oss-fuzz.com/fuzzer-stats?project=libavif&fuzzer=libFuzzer&job=libfuzzer_asan_libavif&group_by=by-fuzzer
There is no clear rule of which files from /out appear there.
My guess is that it is the executables.
  • Loading branch information
vrabaud authored Jan 12, 2024
1 parent 7e1dfc3 commit 14dc506
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/oss-fuzz/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,8 @@ then
this_dir=\$(dirname \"\$0\")
export TEST_DATA_DIRS=\$this_dir/corpus
chmod +x \$this_dir/$fuzz_basename
\$this_dir/$fuzz_basename --fuzz=$fuzz_entrypoint -- \$@" > $OUT/$TARGET_FUZZER
\$this_dir/$fuzz_basename --fuzz=$fuzz_entrypoint -- \$@
chmod -x \$this_dir/$fuzz_basename" > $OUT/$TARGET_FUZZER
chmod +x $OUT/$TARGET_FUZZER
done
done
Expand Down

0 comments on commit 14dc506

Please sign in to comment.