Skip to content

Commit

Permalink
roachtest: skip CDC basic tests
Browse files Browse the repository at this point in the history
cockroachdb#51543

Release note: None
  • Loading branch information
knz committed Jul 17, 2020
1 parent 89b08ab commit eff39b9
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions pkg/cmd/roachtest/cdc.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@ type cdcTestArgs struct {
}

func cdcBasicTest(ctx context.Context, t *test, c *cluster, args cdcTestArgs) {
t.Skip("flaky #51543", "https://github.com/cockroachdb/cockroach/issues/51543")

// Skip the poller test on v19.2. After 19.2 is out, we should likely delete
// the test entirely.
if !args.rangefeed && t.buildVersion.Compare(version.MustParse(`v19.1.0-0`)) > 0 {
Expand Down Expand Up @@ -225,6 +227,8 @@ func cdcBasicTest(ctx context.Context, t *test, c *cluster, args cdcTestArgs) {
}

func runCDCBank(ctx context.Context, t *test, c *cluster) {
t.Skip("flaky #51543", "https://github.com/cockroachdb/cockroach/issues/51543")

// Make the logs dir on every node to work around the `roachprod get logs`
// spam.
c.Run(ctx, c.All(), `mkdir -p logs`)
Expand Down Expand Up @@ -374,6 +378,8 @@ func runCDCBank(ctx context.Context, t *test, c *cluster) {
// end-to-end (including the schema registry default of requiring backward
// compatibility within a topic).
func runCDCSchemaRegistry(ctx context.Context, t *test, c *cluster) {
t.Skip("flaky #51543", "https://github.com/cockroachdb/cockroach/issues/51543")

crdbNodes, kafkaNode := c.Node(1), c.Node(1)
c.Put(ctx, cockroach, "./cockroach", crdbNodes)
c.Start(ctx, t, crdbNodes)
Expand Down

0 comments on commit eff39b9

Please sign in to comment.