From 04411027267cc9cbd3f76e298e8049f8391bdf72 Mon Sep 17 00:00:00 2001 From: Meet Soni Date: Sun, 20 Oct 2024 16:08:46 +0530 Subject: [PATCH] feat: add goleak check for ./plugin/storage/integration/ Signed-off-by: Meet Soni --- plugin/storage/integration/package_test.go | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 plugin/storage/integration/package_test.go diff --git a/plugin/storage/integration/package_test.go b/plugin/storage/integration/package_test.go new file mode 100644 index 00000000000..f4fb9b5f972 --- /dev/null +++ b/plugin/storage/integration/package_test.go @@ -0,0 +1,14 @@ +// Copyright (c) 2024 The Jaeger Authors. +// SPDX-License-Identifier: Apache-2.0 + +package integration + +import ( + "testing" + + "github.com/jaegertracing/jaeger/pkg/testutils" +) + +func TestMain(m *testing.M) { + testutils.VerifyGoLeaks(m) +}