-
Notifications
You must be signed in to change notification settings - Fork 0
/
cifuzz.yaml
43 lines (32 loc) · 1.25 KB
/
cifuzz.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
## Configuration for a CI Fuzz project
## Generated on 2023-04-04
## The build system used to build this project. If not set, cifuzz tries
## to detect the build system automatically.
## Valid values: "bazel", "cmake", "maven", "gradle", "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 for the code under test.
## See https://llvm.org/docs/LibFuzzer.html#corpus
#seed-corpus-dirs:
# - path/to/seed-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 fuzz tests. The default is to run indefinitely.
#timeout: 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
## Set URL of CI Sense
#server: https://app.code-intelligence.com
## Set the project name on CI Sense
#project: my-project-1a2b3c4d
interactive: false