Skip to content

Commit

Permalink
partitionccl,kvserver: skip some flaky tests
Browse files Browse the repository at this point in the history
This commit skips 4 tests as part of the test-infra-team flaky
test cleanup:

TestGossipHandlesReplacedNode
TestStoreRangeMergeConcurrentRequests
TestCheckConsistencyInconsistent
TestRepartitioning

Informs cockroachdb#50024
Informs cockroachdb#50795
Informs cockroachdb#50830
Informs cockroachdb#49112

Release note: None
  • Loading branch information
rytaft committed Jun 30, 2020
1 parent 733b32e commit 8f47845
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pkg/ccl/partitionccl/partition_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1284,6 +1284,9 @@ func TestSelectPartitionExprs(t *testing.T) {
func TestRepartitioning(t *testing.T) {
defer leaktest.AfterTest(t)()

// Skipping as part of test-infra-team flaky test cleanup.
t.Skip("https://github.com/cockroachdb/cockroach/issues/49112")

// This test configures many sub-tests and is too slow to run under nightly
// race stress.
if testutils.NightlyStress() && util.RaceEnabled {
Expand Down
3 changes: 3 additions & 0 deletions pkg/kv/kvserver/client_merge_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1518,6 +1518,9 @@ func TestStoreRangeMergeRHSLeaseExpiration(t *testing.T) {
func TestStoreRangeMergeConcurrentRequests(t *testing.T) {
defer leaktest.AfterTest(t)()

// Skipping as part of test-infra-team flaky test cleanup.
t.Skip("https://github.com/cockroachdb/cockroach/issues/50795")

ctx := context.Background()
storeCfg := kvserver.TestStoreConfig(nil)
storeCfg.TestingKnobs.DisableSplitQueue = true
Expand Down
3 changes: 3 additions & 0 deletions pkg/kv/kvserver/consistency_queue_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,9 @@ func TestCheckConsistencyReplay(t *testing.T) {
func TestCheckConsistencyInconsistent(t *testing.T) {
defer leaktest.AfterTest(t)()

// Skipping as part of test-infra-team flaky test cleanup.
t.Skip("https://github.com/cockroachdb/cockroach/issues/50830")

const numStores = 3
testKnobs := kvserver.StoreTestingKnobs{}

Expand Down
4 changes: 4 additions & 0 deletions pkg/kv/kvserver/gossip_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,10 @@ func TestGossipFirstRange(t *testing.T) {
// restarted after losing its data) without the cluster breaking.
func TestGossipHandlesReplacedNode(t *testing.T) {
defer leaktest.AfterTest(t)()

// Skipping as part of test-infra-team flaky test cleanup.
t.Skip("https://github.com/cockroachdb/cockroach/issues/50024")

if testing.Short() {
// As of Nov 2018 it takes 3.6s.
t.Skip("short")
Expand Down

0 comments on commit 8f47845

Please sign in to comment.