Skip to content

Commit

Permalink
seqtest: migrate test-infra testify (#28298)
Browse files Browse the repository at this point in the history
  • Loading branch information
tisonkun authored Sep 29, 2021
1 parent b2dd60d commit 8c357a1
Show file tree
Hide file tree
Showing 4 changed files with 588 additions and 513 deletions.
37 changes: 37 additions & 0 deletions executor/seqtest/main_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
// Copyright 2021 PingCAP, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

package executor

import (
"testing"

"github.com/pingcap/tidb/util/testbridge"
"github.com/tikv/client-go/v2/config"
"go.uber.org/goleak"
)

func TestMain(m *testing.M) {
testbridge.WorkaroundGoCheckFlags()
config.UpdateGlobal(func(conf *config.Config) {
conf.TiKVClient.AsyncCommit.SafeWindow = 0
conf.TiKVClient.AsyncCommit.AllowedClockDrift = 0
})
opts := []goleak.Option{
goleak.IgnoreTopFunction("github.com/pingcap/tidb/executor.readProjectionInput"),
goleak.IgnoreTopFunction("go.etcd.io/etcd/pkg/logutil.(*MergeLogger).outputLoop"),
goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"),
}
goleak.VerifyTestMain(m, opts...)
}
Loading

0 comments on commit 8c357a1

Please sign in to comment.