Skip to content

Commit 8c5deda

Browse files
committed
updated cifuzz.yaml file and increased max fuzzing duration
1 parent e15be12 commit 8c5deda

File tree

1 file changed

+16
-19
lines changed

1 file changed

+16
-19
lines changed

cifuzz.yaml

Lines changed: 16 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,25 @@
11
## Configuration for a CI Fuzz project
2-
## Generated on 2023-06-06
2+
## Generated on 2024-09-12
33

44
## The build system used to build this project. If not set, cifuzz tries
55
## to detect the build system automatically.
6-
## Valid values: "bazel", "cmake", "maven", "gradle", "other".
7-
#build-system: cmake
6+
## Valid values: "bazel", "cmake", "other".
7+
build-system: cmake
88

99
## If the build system type is "other", this command is used by
1010
## `cifuzz run` to build the fuzz test.
1111
#build-command: "make my_fuzz_test"
1212

13-
## Directories containing sample inputs for the code under test.
13+
## Directories containing sample inputs used as seeds for the
14+
## code under test. This is used only for fuzzing runs.
1415
## See https://llvm.org/docs/LibFuzzer.html#corpus
1516
#seed-corpus-dirs:
1617
# - path/to/seed-corpus
1718

19+
## Directories containing inputs used for calculating coverage.
20+
#corpus-dirs:
21+
# - path/to/corpus
22+
1823
## A file containing input language keywords or other interesting byte
1924
## sequences.
2025
## See https://llvm.org/docs/LibFuzzer.html#dictionaries
@@ -23,24 +28,16 @@
2328
## Command-line arguments to pass to libFuzzer.
2429
## See https://llvm.org/docs/LibFuzzer.html#options
2530
engine-args:
26-
- -use_value_profile=1
27-
28-
## Maximum time to run fuzz tests. The default is to run indefinitely.
29-
timeout: 5m
30-
31-
## By default, fuzz tests are executed in a sandbox to prevent accidental
32-
## damage to the system. Set to false to run fuzz tests unsandboxed.
33-
## Only supported on Linux.
34-
#use-sandbox: false
31+
- -use_value_profile=1
32+
# - -rss_limit_mb=4096
3533

34+
## Maximum time to run all fuzz tests. The default is to run for 10 minutes.
35+
max-fuzzing-duration: 30m
3636
## Set to true to print output of the `cifuzz run` command as JSON.
3737
#print-json: true
3838

39-
## Set to true to disable desktop notifications
39+
## Set to true to disable desktop notifications.
4040
#no-notifications: true
4141

42-
## Set URL of the CI App
43-
#server: https://app.code-intelligence.com
44-
45-
## Set the project name on the CI App
46-
#project: my-project-1a2b3c4d
42+
## Style for CI Fuzz.
43+
#style: plain

0 commit comments

Comments
 (0)