From ba548e2ba877070dc95d8878cb66a120862f2419 Mon Sep 17 00:00:00 2001 From: Onsi Fakhouri Date: Sat, 10 Sep 2022 10:05:40 -0600 Subject: [PATCH] ignore new Ginkgo ProgressSignal goroutine in gleak --- gleak/have_leaked_matcher.go | 1 + 1 file changed, 1 insertion(+) diff --git a/gleak/have_leaked_matcher.go b/gleak/have_leaked_matcher.go index c07f00ec8..91df3913b 100644 --- a/gleak/have_leaked_matcher.go +++ b/gleak/have_leaked_matcher.go @@ -50,6 +50,7 @@ var standardFilters = []types.GomegaMatcher{ IgnoringTopFunction("github.com/onsi/ginkgo/internal/specrunner.(*SpecRunner).registerForInterrupts"), IgnoringCreator("github.com/onsi/ginkgo/v2/internal.(*genericOutputInterceptor).ResumeIntercepting"), IgnoringCreator("github.com/onsi/ginkgo/v2/internal.(*genericOutputInterceptor).ResumeIntercepting..."), + IgnoringCreator("github.com/onsi/ginkgo/v2/internal.RegisterForProgressSignal"), // goroutines of Go's own testing package for its own workings... IgnoringTopFunction("testing.RunTests [chan receive]"),