Skip to content

Commit ad2d947

Browse files
lance6716ti-chi-bot
authored andcommitted
This is an automated cherry-pick of pingcap#55293
Signed-off-by: ti-chi-bot <[email protected]>
1 parent 2253874 commit ad2d947

File tree

2 files changed

+909
-0
lines changed

2 files changed

+909
-0
lines changed
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
load("@io_bazel_rules_go//go:def.bzl", "go_test")
2+
3+
go_test(
4+
name = "bootstraptest_test",
5+
timeout = "short",
6+
srcs = [
7+
"bootstrap_upgrade_test.go", #keep
8+
"main_test.go",
9+
],
10+
flaky = True,
11+
shard_count = 12,
12+
deps = [
13+
"//pkg/config",
14+
"//pkg/ddl",
15+
"//pkg/kv",
16+
"//pkg/meta",
17+
"//pkg/parser/model",
18+
"//pkg/parser/terror",
19+
"//pkg/planner/core",
20+
"//pkg/server/handler",
21+
"//pkg/session", #keep
22+
"//pkg/session/types",
23+
"//pkg/sessionctx",
24+
"//pkg/testkit", #keep
25+
"//pkg/testkit/testfailpoint",
26+
"//pkg/testkit/testmain",
27+
"//pkg/testkit/testsetup",
28+
"//pkg/util",
29+
"//pkg/util/chunk",
30+
"//pkg/util/sqlexec",
31+
"@com_github_pingcap_errors//:errors",
32+
"@com_github_pingcap_failpoint//:failpoint",
33+
"@com_github_stretchr_testify//require", #keep
34+
"@com_github_tikv_client_go_v2//tikv",
35+
"@org_uber_go_atomic//:atomic",
36+
"@org_uber_go_goleak//:goleak",
37+
],
38+
)

0 commit comments

Comments
 (0)