Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ddprof-lib/src/test/fuzz/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ ddprof-lib/fuzz/build/bin/fuzz/dwarf/dwarf <crash_file>
return 0;
}
```
3. Optionally add seed corpus files in `corpus/fuzz_newfeature/`
3. Optionally add seed corpus files in `corpus/newfeature/`
4. The build system will automatically detect the new target

## CI Integration
Expand Down
2 changes: 1 addition & 1 deletion ddprof-lib/src/test/fuzz/fuzz_arguments.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
* Optional: Provide initial corpus seeds to guide fuzzing.
*
* libFuzzer can use these to understand the expected input format.
* Place seed files in ddprof-lib/src/test/fuzz/corpus/fuzz_arguments/
* Place seed files in ddprof-lib/src/test/fuzz/corpus/arguments/
*/
#ifdef FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION
// Example valid argument strings for initial corpus:
Expand Down
Loading