From f333ae936f1859d357b8efc744915fe7927a6c5d Mon Sep 17 00:00:00 2001 From: Ethan Graham Date: Mon, 15 Sep 2025 13:00:09 +0000 Subject: pkg/mgrconfig: add experimental enable_kfuzztest boolean flag --- pkg/mgrconfig/config.go | 3 +++ 1 file changed, 3 insertions(+) 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 { -- cgit mrf-deployment