From 2490757043296438820634d7e1dd88df6755d9a3 Mon Sep 17 00:00:00 2001 From: Cory Barker Date: Tue, 18 Jul 2023 21:19:53 +0000 Subject: [PATCH] Add new options for defining paths to exclude in report gen Test: built locally and verified results Bug: 290337392 Change-Id: I382fe922e74d74b26ebbb2b477877b2a61015b87 --- fuzz/fuzz_common.go | 2 ++ 1 file changed, 2 insertions(+) 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 {