Skip to content

Commit

Permalink
casetest: split DAG test (#46625)
Browse files Browse the repository at this point in the history
ref #44940
  • Loading branch information
hawkingrei committed Sep 4, 2023
1 parent ac6741a commit 08024e7
Show file tree
Hide file tree
Showing 9 changed files with 1,460 additions and 1,330 deletions.
31 changes: 31 additions & 0 deletions planner/core/casetest/dag/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
load("@io_bazel_rules_go//go:def.bzl", "go_test")

go_test(
name = "dag_test",
timeout = "short",
srcs = [
"dag_test.go",
"main_test.go",
],
data = glob(["testdata/**"]),
flaky = True,
shard_count = 10,
deps = [
"//domain",
"//infoschema",
"//parser",
"//parser/ast",
"//parser/model",
"//planner",
"//planner/core",
"//session",
"//sessiontxn",
"//testkit",
"//testkit/testdata",
"//testkit/testmain",
"//testkit/testsetup",
"//util/hint",
"@com_github_stretchr_testify//require",
"@org_uber_go_goleak//:goleak",
],
)
Loading

0 comments on commit 08024e7

Please sign in to comment.