Skip to content

Commit

Permalink
Merge pull request #110505 from cockroachdb/blathers/backport-release…
Browse files Browse the repository at this point in the history
…-23.1-110390

release-23.1: storage: skip TestMVCCScanWithLargeKeyValue under race
  • Loading branch information
jbowens authored Sep 15, 2023
2 parents f850994 + 4091023 commit 79bc0fc
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pkg/storage/pebble_mvcc_scanner_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ import (
"github.com/cockroachdb/cockroach/pkg/roachpb"
"github.com/cockroachdb/cockroach/pkg/settings/cluster"
"github.com/cockroachdb/cockroach/pkg/storage/enginepb"
"github.com/cockroachdb/cockroach/pkg/testutils/skip"
"github.com/cockroachdb/cockroach/pkg/util/hlc"
"github.com/cockroachdb/cockroach/pkg/util/leaktest"
"github.com/cockroachdb/cockroach/pkg/util/mon"
Expand Down Expand Up @@ -124,6 +125,8 @@ func TestMVCCScanWithManyVersionsAndSeparatedIntents(t *testing.T) {

func TestMVCCScanWithLargeKeyValue(t *testing.T) {
defer leaktest.AfterTest(t)()
// This test has been observed to trip the disk-stall detector under -race.
skip.UnderRace(t, "large copies and memfs mutexes can cause excessive delays within VFS stack")

eng := createTestPebbleEngine()
defer eng.Close()
Expand Down

0 comments on commit 79bc0fc

Please sign in to comment.