Skip to content

Commit

Permalink
Merge #99579
Browse files Browse the repository at this point in the history
99579: kvserver: skip TestBackpressureNotAppliedWhenReducingRangeSize under … r=shralex a=shralex

…race

Fixing an omission in #96725. This test sends snapshots and takes many minutes under race. This PR skips it.

Epic: none
Release note: None

Co-authored-by: shralex <shralex@gmail.com>
  • Loading branch information
craig[bot] and shralex committed Mar 26, 2023
2 parents 3e68c5d + 9405d52 commit d107217
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pkg/kv/kvserver/client_replica_backpressure_test.go
Expand Up @@ -25,6 +25,7 @@ import (
"github.com/cockroachdb/cockroach/pkg/kv/kvserver"
"github.com/cockroachdb/cockroach/pkg/roachpb"
"github.com/cockroachdb/cockroach/pkg/testutils"
"github.com/cockroachdb/cockroach/pkg/testutils/skip"
"github.com/cockroachdb/cockroach/pkg/testutils/sqlutils"
"github.com/cockroachdb/cockroach/pkg/testutils/testcluster"
"github.com/cockroachdb/cockroach/pkg/util/leaktest"
Expand All @@ -40,6 +41,8 @@ func TestBackpressureNotAppliedWhenReducingRangeSize(t *testing.T) {
defer leaktest.AfterTest(t)()
defer log.Scope(t).Close(t)

skip.UnderRace(t, "takes >1m under race")

rRand, _ := randutil.NewTestRand()
ctx := context.Background()

Expand Down

0 comments on commit d107217

Please sign in to comment.