Initial community commit
This commit is contained in:
parent
537bcbc862
commit
fc06254474
16440 changed files with 4239995 additions and 2 deletions
|
@ -0,0 +1,18 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# Input data for fuzzer
|
||||
# If you run the fuzzer for the first time, specify a directory with some input
|
||||
# files for the fuzzer, e.g.
|
||||
# FUZZING_INPUT="-i /home/foo/testcases/"
|
||||
# If you want to continue fuzzing using the previous findings, use:
|
||||
# FUZZING_INPUT=-i-
|
||||
FUZZING_INPUT=-i-
|
||||
|
||||
# Directory to place temporary fuzzing data into
|
||||
FUZZING_TEMPDIR=~/libopenmpt-fuzzing-temp
|
||||
# Directory to store permanent fuzzing data (e.g. found crashes) into
|
||||
FUZZING_FINDINGS_DIR=~/libopenmpt-fuzzing
|
||||
# Fuzzer timeout in ms, + = don't abort on timeout
|
||||
FUZZING_TIMEOUT=5000+
|
||||
# Path to afl-fuzz binary
|
||||
AFL_DIR=afl
|
Loading…
Add table
Add a link
Reference in a new issue