Welcome to mirror list, hosted at ThFree Co, Russian Federation.

testhelper_test.go « gitlab « internal - gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f8a245a2d6d90a7e30448c63df5fe04fffc0f142 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package gitlab

import (
	"os"
	"testing"

	"gitlab.com/gitlab-org/gitaly/v14/internal/testhelper"
)

func TestMain(m *testing.M) {
	defer testhelper.MustHaveNoChildProcess()
	cleanup := testhelper.Configure()
	defer cleanup()
	os.Exit(m.Run())
}