summaryrefslogtreecommitdiff
path: root/test/fuzz
diff options
context:
space:
mode:
authorintrigus-lgtm <60750685+intrigus-lgtm@users.noreply.github.com>2020-07-06 22:47:10 +0200
committerGitHub <noreply@github.com>2020-07-06 13:47:10 -0700
commit0438ed03ffbb4db86283ae3fcea3529971f1715b (patch)
tree27d428bbf24fd0f8aa914b32adccd4b5780b0c3a /test/fuzz
parentde53b82e2c48d6221af9881e50cc57d961de3365 (diff)
Fix wrong file name (#666)
"build_fuzzers" -> "build-fuzzers". It should be a hypen and not an underscore.
Diffstat (limited to 'test/fuzz')
-rw-r--r--test/fuzz/README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/fuzz/README.md b/test/fuzz/README.md
index 649d2d89..a02d2689 100644
--- a/test/fuzz/README.md
+++ b/test/fuzz/README.md
@@ -22,10 +22,10 @@ The fuzzers can then be built with:
export CLANG_DIR=$HOME/src/third_party/llvm-build/Release+Asserts/bin
CC="$CLANG_DIR/clang" CXX="$CLANG_DIR/clang++" LINK="$CLANG_DIR/clang++" \
LIB_FUZZER_PATH=$HOME/src/compiler-rt/lib/fuzzer/libFuzzer.a \
- ./script/build_fuzzers
+ ./script/build-fuzzers
```
-This will generate a separate fuzzer for each grammar defined in `test/fixtures/grammars` and will be instrumented with [AddressSanitizer](https://clang.llvm.org/docs/AddressSanitizer.html) and [UndefinedBehaviorSanitizer](https://clang.llvm.org/docs/UndefinedBehaviorSanitizer.html). Individual fuzzers can be built with, for example, `./script/build_fuzzers python ruby`.
+This will generate a separate fuzzer for each grammar defined in `test/fixtures/grammars` and will be instrumented with [AddressSanitizer](https://clang.llvm.org/docs/AddressSanitizer.html) and [UndefinedBehaviorSanitizer](https://clang.llvm.org/docs/UndefinedBehaviorSanitizer.html). Individual fuzzers can be built with, for example, `./script/build-fuzzers python ruby`.
The `run-fuzzer` script handles running an individual fuzzer with a sensible default set of arguments:
```