Skip to content

Commit

Permalink
sql: skip TestExplainRedact under race
Browse files Browse the repository at this point in the history
We just saw a failure under race with a timeout with no clear signs of
anything being wrong, so let's just skip a couple of tests under race.

Release note: None
  • Loading branch information
yuzefovich committed May 22, 2024
1 parent 02ca30c commit e41bde3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions pkg/ccl/testccl/sqlccl/explain_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ func TestExplainRedactDDL(t *testing.T) {
defer log.Scope(t).Close(t)

skip.UnderDeadlock(t, "the test is too slow")
skip.UnderRace(t, "the test is too slow")

const numStatements = 10

Expand Down
1 change: 1 addition & 0 deletions pkg/sql/explain_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -509,6 +509,7 @@ func TestExplainRedact(t *testing.T) {
defer log.Scope(t).Close(t)

skip.UnderDeadlock(t, "the test is too slow")
skip.UnderRace(t, "the test is too slow")

const numStatements = 10

Expand Down

0 comments on commit e41bde3

Please sign in to comment.