Adding capability to granular disable of fuzzer
This change is to add granularity for disabling of the fuzzer from running on host, device or both. Bug: 145824604 Test: make haiku successfully completes after change Change-Id: I686b439e36c622108f7b5b3e3f4738b8295320a7
This commit is contained in:
@@ -27,9 +27,10 @@ import (
|
|||||||
type FuzzConfig struct {
|
type FuzzConfig struct {
|
||||||
// Email address of people to CC on bugs or contact about this fuzz target.
|
// Email address of people to CC on bugs or contact about this fuzz target.
|
||||||
Cc []string `json:"cc,omitempty"`
|
Cc []string `json:"cc,omitempty"`
|
||||||
// Boolean specifying whether to disable the fuzz target from running
|
// Specify whether to enable continuous fuzzing on devices. Defaults to true.
|
||||||
// automatically in continuous fuzzing infrastructure.
|
Fuzz_on_haiku_device *bool `json:"fuzz_on_haiku_device,omitempty"`
|
||||||
Disable *bool `json:"disable,omitempty"`
|
// Specify whether to enable continuous fuzzing on host. Defaults to true.
|
||||||
|
Fuzz_on_haiku_host *bool `json:"fuzz_on_haiku_host,omitempty"`
|
||||||
// Component in Google's bug tracking system that bugs should be filed to.
|
// Component in Google's bug tracking system that bugs should be filed to.
|
||||||
Componentid *int64 `json:"componentid,omitempty"`
|
Componentid *int64 `json:"componentid,omitempty"`
|
||||||
// Hotlists in Google's bug tracking system that bugs should be marked with.
|
// Hotlists in Google's bug tracking system that bugs should be marked with.
|
||||||
|
Reference in New Issue
Block a user