Skip to content

Commit e13aef0

Browse files
Marcono1234simonresch
authored andcommitted
docs: fix wrong corpus dir in README
1 parent 9eb1996 commit e13aef0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ If you see an error saying that `libjvm.so` has not been found, make sure that `
178178
Jazzer uses two main directories to store inputs: the *generated corpus directory* and the *inputs directory*.
179179

180180
> [!IMPORTANT]
181-
> If you are using Git and want to add the corpus directories to the repository, mark them as `binary` in your `.gitattributes` file:
181+
> If you are using Git and want to add the inputs and corpus directories to the repository, mark them as `binary` in your `.gitattributes` file:
182182
>
183183
> ```gitattributes
184184
> src/test/resources/** binary
@@ -188,7 +188,7 @@ Jazzer uses two main directories to store inputs: the *generated corpus director
188188
### Generated corpus directory
189189
190190
The *generated corpus directory* is where Jazzer saves inputs that generate new coverage during fuzzing.
191-
It is located in `.cifuzz-corpus/<package>/<FuzzTestClass>/<fuzzTestMethod>`, where `<package>`, `<FuzzTestClass>`, and `<fuzzTestMethod>` correspond to the package name, class name, and method name of the fuzz test, respectively.
191+
It is located in `.cifuzz-corpus/<package>.<FuzzTestClass>/<fuzzTestMethod>`, where `<package>`, `<FuzzTestClass>`, and `<fuzzTestMethod>` correspond to the package name, class name, and method name of the fuzz test, respectively.
192192
For example, if the fuzz test is in the class `src/test/java/com/example/ValidFuzzTests.java`, method `byteFuzz`, the corpus directory is located in `.cifuzz-corpus/com.example.ValidFuzzTests/byteFuzz`.
193193
194194

0 commit comments

Comments
 (0)