Skip to content

Commit

Permalink
*: skip more tests under race
Browse files Browse the repository at this point in the history
Epic: CRDB-8308
Release note: None
  • Loading branch information
rickystewart committed Dec 13, 2023
1 parent 52329bc commit 5c64a22
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions pkg/ccl/kvccl/kvfollowerreadsccl/boundedstaleness_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -263,6 +263,7 @@ func TestBoundedStalenessDataDriven(t *testing.T) {
defer log.Scope(t).Close(t)

skip.UnderStress(t, "1μs staleness reads may actually succeed due to the slow environment")
skip.UnderRace(t, "probable OOM")
defer ccl.TestingEnableEnterprise()()

ctx := context.Background()
Expand Down
2 changes: 2 additions & 0 deletions pkg/server/application_api/schema_inspection_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -424,6 +424,8 @@ func TestAdminAPIDatabaseDetails(t *testing.T) {
defer leaktest.AfterTest(t)()
defer log.Scope(t).Close(t)

skip.UnderRace(t, "probable OOM")

const numServers = 3
tc := testcluster.StartTestCluster(t, numServers, base.TestClusterArgs{})
defer tc.Stopper().Stop(context.Background())
Expand Down
2 changes: 2 additions & 0 deletions pkg/server/application_api/stats_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -327,6 +327,8 @@ func TestClusterResetSQLStats(t *testing.T) {
defer leaktest.AfterTest(t)()
defer log.Scope(t).Close(t)

skip.UnderRace(t, "probable OOM")

ctx := context.Background()

for _, flushed := range []bool{false, true} {
Expand Down
3 changes: 3 additions & 0 deletions pkg/sql/importer/import_stmt_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5552,6 +5552,9 @@ func TestImportMysql(t *testing.T) {
func TestImportIntoMysql(t *testing.T) {
defer leaktest.AfterTest(t)()
defer log.Scope(t).Close(t)

skip.UnderRace(t, "probable OOM")

const (
nodes = 3
)
Expand Down

0 comments on commit 5c64a22

Please sign in to comment.