From 0c46513281b5b5f4b8597d831cedd59e67f39a43 Mon Sep 17 00:00:00 2001 From: Marcin Owsiany Date: Tue, 6 Aug 2024 15:42:09 +0200 Subject: [PATCH] Make is possible to build with Go 1.23. (#548) Signed-off-by: Marcin Owsiany --- pkg/test/utils/testing.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkg/test/utils/testing.go b/pkg/test/utils/testing.go index 3961e5c1..e9b2b6e4 100644 --- a/pkg/test/utils/testing.go +++ b/pkg/test/utils/testing.go @@ -116,6 +116,10 @@ func (testDeps) SnapshotCoverage() { } +func (testDeps) InitRuntimeCoverage() (mode string, tearDown func(string, string) (string, error), snapcov func() float64) { + return +} + // corpusEntry is from the public go testing which references an internal structure. // corpusEntry is an alias to the same type as internal/fuzz.CorpusEntry. // We use a type alias because we don't want to export this type, and we can't