From 5082052d02a5ab5f17a8f253f502ea2be52405fa Mon Sep 17 00:00:00 2001 From: Nathan VanBenschoten Date: Mon, 29 Jul 2019 13:17:49 -0400 Subject: [PATCH] roachtest: skip kv/contention/nodes=4 for release-19.1 release-19.1 is susceptible to the issues described in #36089, so it won't reliably pass this test. Release note: None --- pkg/cmd/roachtest/kv.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkg/cmd/roachtest/kv.go b/pkg/cmd/roachtest/kv.go index 77e39ea2998d..da0c62036851 100644 --- a/pkg/cmd/roachtest/kv.go +++ b/pkg/cmd/roachtest/kv.go @@ -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))