Skip to content

Commit

Permalink
tests: move some tests to heavy pools in race, deadlock
Browse files Browse the repository at this point in the history
Epic: CRDB-8308
Release note: None
  • Loading branch information
rickystewart committed Mar 8, 2024
1 parent 02843bd commit f81289c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
5 changes: 4 additions & 1 deletion pkg/ccl/streamingccl/streamingest/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,10 @@ go_test(
],
data = glob(["testdata/**"]),
embed = [":streamingest"],
exec_properties = {"test.Pool": "large"},
exec_properties = select({
"//build/toolchains:is_heavy": {"test.Pool": "heavy"},
"//conditions:default": {"test.Pool": "large"},
}),
shard_count = 16,
tags = ["ccl_test"],
deps = [
Expand Down
4 changes: 4 additions & 0 deletions pkg/server/storage_api/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ go_test(
"rangelog_test.go",
"ranges_test.go",
],
exec_properties = select({
"//build/toolchains:is_heavy": {"test.Pool": "large"},
"//conditions:default": {"test.Pool": "default"},
}),
deps = [
"//pkg/base",
"//pkg/build",
Expand Down
2 changes: 1 addition & 1 deletion pkg/sql/sqlstats/persistedsqlstats/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ go_test(
],
data = glob(["testdata/**"]),
exec_properties = select({
"//build/toolchains:is_heavy": {"test.Pool": "large"},
"//build/toolchains:is_heavy": {"test.Pool": "heavy"},
"//conditions:default": {"test.Pool": "default"},
}),
shard_count = 16,
Expand Down

0 comments on commit f81289c

Please sign in to comment.