-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
840b65c
commit 354b3ab
Showing
2 changed files
with
54 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
## Configuration for a CI Fuzz project | ||
## Generated on 2024-07-10 | ||
|
||
## The build system used to build this project. If not set, cifuzz tries | ||
## to detect the build system automatically. | ||
## Valid values: "bazel", "cmake", "other". | ||
build-system: cmake | ||
|
||
## If the build system type is "other", this command is used by | ||
## `cifuzz run` to build the fuzz test. | ||
#build-command: "make my_fuzz_test" | ||
|
||
## Directories containing sample inputs used as seeds for the | ||
## code under test. This is used only for fuzzing runs. | ||
## See https://llvm.org/docs/LibFuzzer.html#corpus | ||
#seed-corpus-dirs: | ||
# - path/to/seed-corpus | ||
|
||
## Directories containing inputs used for calculating coverage. | ||
#corpus-dirs: | ||
# - path/to/corpus | ||
|
||
## A file containing input language keywords or other interesting byte | ||
## sequences. | ||
## See https://llvm.org/docs/LibFuzzer.html#dictionaries | ||
#dict: path/to/dictionary.dct | ||
|
||
## Command-line arguments to pass to libFuzzer. | ||
## See https://llvm.org/docs/LibFuzzer.html#options | ||
#engine-args: | ||
# - -rss_limit_mb=4096 | ||
|
||
## Maximum time to run all fuzz tests. The default is to run for 10 minutes. | ||
#max-fuzzing-duration: 30m | ||
|
||
## Set to true to print output of the `cifuzz run` command as JSON. | ||
#print-json: true | ||
|
||
## Set to true to disable desktop notifications. | ||
#no-notifications: true | ||
|
||
## Style for CI Fuzz. | ||
#style: plain |