Skip to content

Commit

Permalink
Merge #59166 #59181
Browse files Browse the repository at this point in the history
59166: acceptance: skip TestDocker* flaky tests r=RaduBerinde a=RaduBerinde

These tests all flake with the same failure.

Informs #58955.

Release note: None

59181: server: skip TestMigrationPurgeOutdatedReplicas r=irfansharif a=RaduBerinde

Informs #59180.

Release note: None

Co-authored-by: Radu Berinde <[email protected]>
  • Loading branch information
craig[bot] and RaduBerinde committed Jan 20, 2021
3 parents a9a0f71 + ce74986 + e2a7211 commit 3d01fda
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pkg/acceptance/adapter_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ func TestDockerCSharp(t *testing.T) {
}

func TestDockerJava(t *testing.T) {
skip.WithIssue(t, 58955, "flaky test")
s := log.Scope(t)
defer s.Close(t)

Expand All @@ -69,6 +70,7 @@ func TestDockerElixir(t *testing.T) {
}

func TestDockerNodeJS(t *testing.T) {
skip.WithIssue(t, 58955, "flaky test")
s := log.Scope(t)
defer s.Close(t)

Expand Down Expand Up @@ -97,6 +99,7 @@ func TestDockerPHP(t *testing.T) {
}

func TestDockerPSQL(t *testing.T) {
skip.WithIssue(t, 58955, "flaky test")
s := log.Scope(t)
defer s.Close(t)

Expand Down
2 changes: 2 additions & 0 deletions pkg/server/migration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ import (
"github.com/cockroachdb/cockroach/pkg/settings/cluster"
"github.com/cockroachdb/cockroach/pkg/testutils"
"github.com/cockroachdb/cockroach/pkg/testutils/serverutils"
"github.com/cockroachdb/cockroach/pkg/testutils/skip"
"github.com/cockroachdb/cockroach/pkg/util/leaktest"
)

Expand Down Expand Up @@ -200,6 +201,7 @@ func TestBumpClusterVersion(t *testing.T) {

func TestMigrationPurgeOutdatedReplicas(t *testing.T) {
defer leaktest.AfterTest(t)()
skip.WithIssue(t, 59180)

const numStores = 3
var storeSpecs []base.StoreSpec
Expand Down

0 comments on commit 3d01fda

Please sign in to comment.