forked from pingcap/tidb
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This is an automated cherry-pick of pingcap#49769
Signed-off-by: ti-chi-bot <ti-community-prow-bot@tidb.io>
- Loading branch information
1 parent
4c3389e
commit 19055f2
Showing
5 changed files
with
497 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
load("@io_bazel_rules_go//go:def.bzl", "go_test") | ||
|
||
go_test( | ||
name = "variable_test", | ||
timeout = "short", | ||
srcs = [ | ||
"main_test.go", | ||
"variable_test.go", | ||
], | ||
flaky = True, | ||
shard_count = 10, | ||
deps = [ | ||
"//pkg/config", | ||
"//pkg/kv", | ||
"//pkg/session", | ||
"//pkg/sessionctx/variable", | ||
"//pkg/store/copr", | ||
"//pkg/testkit", | ||
"//pkg/testkit/testmain", | ||
"//pkg/testkit/testsetup", | ||
"//pkg/util/dbterror/exeerrors", | ||
"//pkg/util/memory", | ||
"@com_github_pingcap_failpoint//:failpoint", | ||
"@com_github_stretchr_testify//require", | ||
"@com_github_tikv_client_go_v2//tikv", | ||
"@org_uber_go_goleak//:goleak", | ||
], | ||
) |
Oops, something went wrong.