Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ccl,kv: skip a few flakey tests/sub-tests #67082

Merged
merged 1 commit into from
Jun 30, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions pkg/ccl/changefeedccl/changefeed_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2332,7 +2332,10 @@ func TestChangefeedSchemaTTL(t *testing.T) {
t.Run("enterprise", enterpriseTest(testFn))
t.Run("cloudstorage", cloudStorageTest(testFn))
t.Run("kafka", kafkaTest(testFn))
t.Run(`webhook`, webhookTest(testFn))
t.Run(`webhook`, func(t *testing.T) {
skip.WithIssue(t, 66991, "flaky test")
webhookTest(testFn)(t)
})
}

func TestChangefeedErrors(t *testing.T) {
Expand Down Expand Up @@ -3221,7 +3224,10 @@ func TestManyChangefeedsOneTable(t *testing.T) {
t.Run(`enterprise`, enterpriseTest(testFn))
t.Run(`cloudstorage`, cloudStorageTest(testFn))
t.Run(`kafka`, kafkaTest(testFn))
t.Run(`webhook`, webhookTest(testFn))
t.Run(`webhook`, func(t *testing.T) {
skip.WithIssue(t, 67034, "flakey test")
webhookTest(testFn)(t)
})
}

func TestUnspecifiedPrimaryKey(t *testing.T) {
Expand Down
1 change: 1 addition & 0 deletions pkg/kv/kvserver/client_merge_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4378,6 +4378,7 @@ func TestMergeQueue(t *testing.T) {
})

t.Run("sticky-bit-expiration", func(t *testing.T) {
skip.WithIssue(t, 66942, "flakey test")
manualSplitTTL := time.Millisecond * 200
reset(t)
store.MustForceMergeScanAndProcess()
Expand Down
1 change: 1 addition & 0 deletions pkg/kv/kvserver/client_split_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2010,6 +2010,7 @@ func TestStoreSplitGCThreshold(t *testing.T) {
// and the uninitialized replica reacting to messages.
func TestStoreRangeSplitRaceUninitializedRHS(t *testing.T) {
defer leaktest.AfterTest(t)()
skip.WithIssue(t, 66480, "flaky test")
defer log.Scope(t).Close(t)

currentTrigger := make(chan *roachpb.SplitTrigger, 1)
Expand Down
1 change: 1 addition & 0 deletions pkg/kv/kvserver/replica_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5606,6 +5606,7 @@ func TestPushTxnAlreadyCommittedOrAborted(t *testing.T) {
// test cases, the priorities are set such that the push will succeed.
func TestPushTxnUpgradeExistingTxn(t *testing.T) {
defer leaktest.AfterTest(t)()
skip.WithIssue(t, 64313, "flaky test")
defer log.Scope(t).Close(t)
tc := testContext{}
stopper := stop.NewStopper()
Expand Down