-
Notifications
You must be signed in to change notification settings - Fork 5.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
statistics: add more test for tidb_merge_partition_stats_concurrency (#…
- Loading branch information
1 parent
2027efd
commit b4af8ff
Showing
7 changed files
with
578 additions
and
94 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,20 @@ | ||
load("@io_bazel_rules_go//go:def.bzl", "go_test") | ||
|
||
go_test( | ||
name = "globalstats_test", | ||
timeout = "short", | ||
srcs = [ | ||
"globalstats_internal_test.go", | ||
"globalstats_test.go", | ||
"main_test.go", | ||
], | ||
flaky = True, | ||
shard_count = 6, | ||
deps = [ | ||
"//domain", | ||
"//testkit", | ||
"//testkit/testsetup", | ||
"@com_github_stretchr_testify//require", | ||
"@org_uber_go_goleak//:goleak", | ||
], | ||
) |
Oops, something went wrong.