fuzz-settings.sh 625 B

123456789101112131415161718
  1. #!/usr/bin/env bash
  2. # Input data for fuzzer
  3. # If you run the fuzzer for the first time, specify a directory with some input
  4. # files for the fuzzer, e.g.
  5. # FUZZING_INPUT="-i /home/foo/testcases/"
  6. # If you want to continue fuzzing using the previous findings, use:
  7. # FUZZING_INPUT=-i-
  8. FUZZING_INPUT=-i-
  9. # Directory to place temporary fuzzing data into
  10. FUZZING_TEMPDIR=~/libopenmpt-fuzzing-temp
  11. # Directory to store permanent fuzzing data (e.g. found crashes) into
  12. FUZZING_FINDINGS_DIR=~/libopenmpt-fuzzing
  13. # Fuzzer timeout in ms, + = don't abort on timeout
  14. FUZZING_TIMEOUT=5000+
  15. # Path to afl-fuzz binary
  16. AFL_DIR=afl