Skip to content

Commit

Permalink
release-23.1: sql/tests: fix test size of random syntax generation
Browse files Browse the repository at this point in the history
Previously, the test size of the RSG tests within
the nightly environment was not configured correctly.
While the nightly script sets a timeout its overwritten
by the value from the bazel files. As a result the
TestRandomSyntaxFunction fails in CI environments when
run using the nightly scripts. To address this, this
patch bumps the test size to enormous.

Fixes: #109068

Release note: None
  • Loading branch information
fqazi committed Aug 25, 2023
1 parent 11dd555 commit 63c1cf1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/sql/tests/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ go_library(

go_test(
name = "tests_test",
size = "large",
size = "enormous",
srcs = [
"allow_role_memberships_to_change_during_transaction_test.go",
"autocommit_extended_protocol_test.go",
Expand All @@ -51,7 +51,7 @@ go_test(
"truncate_test.go",
"virtual_table_test.go",
],
args = ["-test.timeout=895s"],
args = ["-test.timeout=3595s"],
data = glob(["testdata/**"]),
embed = [":tests"],
shard_count = 16,
Expand Down

0 comments on commit 63c1cf1

Please sign in to comment.