Skip to content

Commit

Permalink
cli: unskip test tenant zip test
Browse files Browse the repository at this point in the history
This patch unskips and re-records the datadriven `TestTenantZip` as it
was fixed in cockroachdb#96553, but was not unskipped or recorded. The test was run
locally using `--stress` and did not flake:
```
101 runs so far, 0 failures, over 5m0s
```

Fixes cockroachdb#87141

Release note: None
  • Loading branch information
aadityasondhi authored and abarganier committed Sep 20, 2023
1 parent c21abb3 commit 4132436
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pkg/cli/zip_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -488,6 +488,10 @@ func eraseNonDeterministicZipOutput(out string) string {
out = re.ReplaceAllString(out, ``)
re = regexp.MustCompile(`(?m)^\[node \d+\] writing profile.*$` + "\n")
out = re.ReplaceAllString(out, ``)
re = regexp.MustCompile(`(?m)^\[node \d+\] writing dump.*$` + "\n")
out = re.ReplaceAllString(out, ``)
re = regexp.MustCompile(`(?m)^\[node \d+\] retrieving goroutine_dump.*$` + "\n")
out = re.ReplaceAllString(out, ``)

return out
}
Expand Down

0 comments on commit 4132436

Please sign in to comment.