Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Co1lin authored Oct 4, 2022
1 parent 65f166a commit beae033
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tutorial/libFuzzerTutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,7 @@ Try this with one of the crashes you have found previously.
## Visualizing Coverage
We recommend [Clang Coverage](http://clang.llvm.org/docs/SourceBasedCodeCoverage.html) to visualize and study your code coverage. A simple example:
```
# Build you code for Clang Coverage; link it against a standalone driver for running fuzz targets.
# Build your code for Clang Coverage; link it against a standalone driver for running fuzz targets.
svn export http://github.com/llvm/llvm-project/trunk/compiler-rt/lib/fuzzer Fuzzer
clang -fprofile-instr-generate -fcoverage-mapping ~/fuzzing/tutorial/libFuzzer/fuzz_me.cc \
~/Fuzzer/standalone/StandaloneFuzzTargetMain.c
Expand Down Expand Up @@ -616,7 +616,7 @@ LeakSanitizer libFuzzer will eventually die with OOM (see above).
### Timeouts

Timeouts are equally bad for in-process fuzzing.
If some intput takes more than 1200 seconds to run libFuzzer will report a
If some input takes more than 1200 seconds to run libFuzzer will report a
"timeout" error and exit, dumping the reproducer on disk.
You may change the default timeout with `-timeout=N`.

Expand Down

0 comments on commit beae033

Please sign in to comment.