Skip to content

Commit

Permalink
Merge #61292 #61296
Browse files Browse the repository at this point in the history
61292: ccl/streamingccl/streamingest: skip TestRandomClientGeneration r=RaduBerinde a=RaduBerinde

Refs: #61287

Reason: flaky test

Generated by bin/skip-test.

Release justification: non-production code changes

Release note: None

61296: kvserver: add a logscope r=andreimatei a=andreimatei

Release note: None
Release justification: Tests only.

Co-authored-by: Radu Berinde <[email protected]>
Co-authored-by: Andrei Matei <[email protected]>
  • Loading branch information
3 people committed Mar 2, 2021
3 parents 847e61c + b012577 + 6d2e6c2 commit 9129e7c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ import (
"github.com/cockroachdb/cockroach/pkg/storage"
"github.com/cockroachdb/cockroach/pkg/testutils"
"github.com/cockroachdb/cockroach/pkg/testutils/distsqlutils"
"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/hlc"
Expand Down Expand Up @@ -275,6 +276,7 @@ func makeTestStreamURI(
// stream workload.
func TestRandomClientGeneration(t *testing.T) {
defer leaktest.AfterTest(t)()
skip.WithIssue(t, 61287, "flaky test")
defer log.Scope(t).Close(t)

ctx := context.Background()
Expand Down
1 change: 1 addition & 0 deletions pkg/kv/kvserver/client_replica_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2295,6 +2295,7 @@ func TestRandomConcurrentAdminChangeReplicasRequests(t *testing.T) {

func TestChangeReplicasSwapVoterWithNonVoter(t *testing.T) {
defer leaktest.AfterTest(t)()
defer log.Scope(t).Close(t)
skip.UnderRace(t)

const numNodes = 7
Expand Down

0 comments on commit 9129e7c

Please sign in to comment.