From be17c9cc24473b811d7b23ba61b6304aa4558fd6 Mon Sep 17 00:00:00 2001 From: Aleksandr Nogikh Date: Wed, 14 Jan 2026 13:18:19 +0100 Subject: pkg/manager: match full function names in focus areas When configuring focus areas before directed fuzzing, construct regular expressions that match the exact function names. Otherwise, we end up adding more functions than intended. --- pkg/manager/diff_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pkg/manager/diff_test.go') diff --git a/pkg/manager/diff_test.go b/pkg/manager/diff_test.go index 9c17361d5..a73c31ffb 100644 --- a/pkg/manager/diff_test.go +++ b/pkg/manager/diff_test.go @@ -55,7 +55,7 @@ index 103167d..fbf7a68 100644 { Name: symbolsArea, Filter: mgrconfig.CovFilterCfg{ - Functions: []string{"function"}, + Functions: []string{"^function$"}, }, Weight: 6.0, }, -- cgit mrf-deployment