Skip to content

Commit

Permalink
Merge #27716
Browse files Browse the repository at this point in the history
27716: roachtest: only run the drop test on 2.1 r=tschottdorf a=petermattis

This test is flaky on 2.0 as the improvements to table dropping in 2.1
have yet to be backported.

Fixes #26677

Release note: None

Co-authored-by: Peter Mattis <[email protected]>
  • Loading branch information
craig[bot] and petermattis committed Jul 19, 2018
2 parents 229a329 + 3037aed commit 3812c84
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pkg/cmd/roachtest/drop.go
Original file line number Diff line number Diff line change
Expand Up @@ -151,8 +151,9 @@ gc:
initDiskSpace := int(1E9)

r.Add(testSpec{
Name: fmt.Sprintf("drop/tpcc/w=%d,nodes=%d", warehouses, numNodes),
Nodes: nodes(numNodes),
Name: fmt.Sprintf("drop/tpcc/w=%d,nodes=%d", warehouses, numNodes),
MinVersion: `v2.1.0`,
Nodes: nodes(numNodes),
Run: func(ctx context.Context, t *test, c *cluster) {
// NB: this is likely not going to work out in `-local` mode. Edit the
// numbers during iteration.
Expand Down

0 comments on commit 3812c84

Please sign in to comment.