From 29f70ccb9eb3b14d633d8e89d082a83ec403791b Mon Sep 17 00:00:00 2001 From: Tobias Schottdorf Date: Mon, 14 Jan 2019 13:44:49 +0100 Subject: [PATCH] roachtest: add more exceptions to bank/zerosum-restart Fixes #33683. Release note: None --- pkg/cmd/roachtest/bank.go | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pkg/cmd/roachtest/bank.go b/pkg/cmd/roachtest/bank.go index 47b6221d5607..1677f39fcfc6 100644 --- a/pkg/cmd/roachtest/bank.go +++ b/pkg/cmd/roachtest/bank.go @@ -345,7 +345,7 @@ func (s *bankState) startSplitMonkey(ctx context.Context, d time.Duration, c *cl } func isExpectedRelocateError(err error) bool { - return testutils.IsError(err, "(descriptor changed|unable to remove replica .* which is not present|unable to add replica .* which is already present|received invalid ChangeReplicasTrigger .* to remove self|breaker open)") + return testutils.IsError(err, "(descriptor changed|unable to remove replica .* which is not present|unable to add replica .* which is already present|received invalid ChangeReplicasTrigger .* to remove self|breaker open|cannot up-replicate|error looking up store)") } func accountDistribution(r *rand.Rand) *rand.Zipf { @@ -531,8 +531,6 @@ func runBankNodeZeroSum(ctx context.Context, t *test, c *cluster) { c.l.Printf("%d transfers (%.1f/sec) in %.1fs\n", count, float64(count)/elapsed, elapsed) } -var _ = runBankZeroSumRestart - func runBankZeroSumRestart(ctx context.Context, t *test, c *cluster) { c.Put(ctx, cockroach, "./cockroach") c.Start(ctx, t)