Lines Matching refs:fuzz
9 How to fuzz OpenSSL with [libfuzzer](http://llvm.org/docs/LibFuzzer.html),
25 CC=clang ./config enable-fuzz-libfuzzer \
71 fuzz/helper.py $FUZZER
73 where $FUZZER is one of the executables in `fuzz/`.
77 `fuzz/corpora/$FUZZER-crash/`.
90 CC=clang ./config enable-fuzz-libfuzzer \
109 CC=afl-clang-fast ./config enable-fuzz-afl no-shared no-module \
121 afl-fuzz -i fuzz/corpora/$FUZZER -o fuzz/corpora/$FUZZER/out fuzz/$FUZZER
123 Where $FUZZER is one of the executables in `fuzz/`.
129 the fuzz/*-test binaries and the file generated by the fuzzer. They binaries
131 config with enable-fuzz-* or -fsanitize-coverage, but some of the other options
139 fuzz/$FUZZER-test $file
143 fuzz/asn1-test fuzz/corpora/asn1
147 To run several fuzz tests you can use for instance:
151 To run all fuzz tests you can use:
200 in some corpus subdirectory `fuzz/corpora/DIR` this can be done as follows:
202 mkdir fuzz/corpora/NEWDIR
203 fuzz/$FUZZER -merge=1 fuzz/corpora/NEWDIR fuzz/corpora/DIR