aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/mgrconfig
diff options
context:
space:
mode:
authorEthan Graham <ethangraham@google.com>2025-09-15 13:00:09 +0000
committerAleksandr Nogikh <nogikh@google.com>2025-09-22 09:11:54 +0000
commitf333ae936f1859d357b8efc744915fe7927a6c5d (patch)
tree66fd494c4ce166aa455e850028b05011a8c31e54 /pkg/mgrconfig
parent9a3002038e891237ff5b561f756a0ff6e32d1d2f (diff)
pkg/mgrconfig: add experimental enable_kfuzztest boolean flag
Diffstat (limited to 'pkg/mgrconfig')
-rw-r--r--pkg/mgrconfig/config.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkg/mgrconfig/config.go b/pkg/mgrconfig/config.go
index c9944900e..45145243c 100644
--- a/pkg/mgrconfig/config.go
+++ b/pkg/mgrconfig/config.go
@@ -255,6 +255,9 @@ type Experimental struct {
// with an empty Filter, but non-empty weight.
// E.g. "focus_areas": [ {"filter": {"files": ["^net"]}, "weight": 10.0}, {"weight": 1.0} ].
FocusAreas []FocusArea `json:"focus_areas,omitempty"`
+
+ // Enable dynamic discovery and fuzzing of KFuzzTest targets.
+ EnableKFuzzTest bool `json:"enable_kfuzztest"`
}
type FocusArea struct {