-
Notifications
You must be signed in to change notification settings - Fork 0
/
cifuzz.yaml
53 lines (40 loc) · 1.49 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
44
45
46
47
48
49
50
51
52
53
## Configuration for a CI Fuzz project
## Generated on 2024-03-26
## 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", "nodejs", "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 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
## Style for CI Fuzz.
#style: plain
interactive: false
max-fuzzing-duration: 30s
max-idle-time: 10s