Revision e151faf3ccaff10b4a1c08a4496e5bf93066ee9c authored by Gyuho Lee on 22 June 2020, 02:19:31 UTC, committed by GitHub on 22 June 2020, 02:19:31 UTC
2 parent s 8292fd5 + 36f8dee
Raw File
main_test.go
// Copyright 2013 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package integration

import (
	"os"
	"testing"

	"go.etcd.io/etcd/pkg/testutil"
)

func TestMain(m *testing.M) {
	v := m.Run()
	if v == 0 && testutil.CheckLeakedGoroutine() {
		os.Exit(1)
	}
	os.Exit(v)
}
back to top