Skip to content

Commit

Permalink
roachtest: skip kv/contention/nodes=4 for release-19.1
Browse files Browse the repository at this point in the history
release-19.1 is susceptible to the issues described in #36089, so it
won't reliably pass this test.

Release note: None
  • Loading branch information
nvanbenschoten committed Jul 29, 2019
1 parent a1791ba commit 5082052
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pkg/cmd/roachtest/kv.go
Original file line number Diff line number Diff line change
Expand Up @@ -154,8 +154,9 @@ func registerKV(r *testRegistry) {
func registerKVContention(r *testRegistry) {
const nodes = 4
r.Add(testSpec{
Name: fmt.Sprintf("kv/contention/nodes=%d", nodes),
Cluster: makeClusterSpec(nodes + 1),
Name: fmt.Sprintf("kv/contention/nodes=%d", nodes),
MinVersion: "v19.2.0",
Cluster: makeClusterSpec(nodes + 1),
Run: func(ctx context.Context, t *test, c *cluster) {
c.Put(ctx, cockroach, "./cockroach", c.Range(1, nodes))
c.Put(ctx, workload, "./workload", c.Node(nodes+1))
Expand Down

0 comments on commit 5082052

Please sign in to comment.