Files
tidb/executor/memtest/BUILD.bazel
2022-08-02 11:10:05 +08:00

21 lines
441 B
Python

load("@io_bazel_rules_go//go:def.bzl", "go_test")
go_test(
name = "memtest_test",
timeout = "short",
srcs = [
"main_test.go",
"mem_test.go",
],
flaky = True,
deps = [
"//config",
"//executor",
"//meta/autoid",
"//testkit",
"@com_github_stretchr_testify//require",
"@com_github_tikv_client_go_v2//tikv",
"@org_uber_go_goleak//:goleak",
],
)