summaryrefslogtreecommitdiff
path: root/fuzz/fuzz_common.go
diff options
context:
space:
mode:
author Cory Barker <cobark@google.com> 2023-07-18 21:19:53 +0000
committer Cory Barker <cobark@google.com> 2023-07-18 21:19:53 +0000
commit2490757043296438820634d7e1dd88df6755d9a3 (patch)
treedfcd3d50ae833b688a761ce01fc674b4e0ad5589 /fuzz/fuzz_common.go
parenta4755647b0cd2e0905945986b7c225756846bfbc (diff)
Add new options for defining paths to exclude in report gen
Test: built locally and verified results Bug: 290337392 Change-Id: I382fe922e74d74b26ebbb2b477877b2a61015b87
Diffstat (limited to 'fuzz/fuzz_common.go')
-rw-r--r--fuzz/fuzz_common.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/fuzz/fuzz_common.go b/fuzz/fuzz_common.go
index ada47128c..94b795f4d 100644
--- a/fuzz/fuzz_common.go
+++ b/fuzz/fuzz_common.go
@@ -371,6 +371,8 @@ type FuzzConfig struct {
// Specifies whether fuzz target should check presubmitted code changes for crashes.
// Defaults to false.
Use_for_presubmit *bool `json:"use_for_presubmit,omitempty"`
+ // Specify which paths to exclude from fuzzing coverage reports
+ Exclude_paths_from_reports []string `json:"exclude_paths_from_reports,omitempty"`
}
type FuzzFrameworks struct {