From 41324366d440f565428ccec77e47850ee5d06c37 Mon Sep 17 00:00:00 2001 From: Aaditya Sondhi <20070511+aadityasondhi@users.noreply.github.com> Date: Thu, 16 Mar 2023 11:24:15 -0400 Subject: [PATCH] cli: unskip test tenant zip test This patch unskips and re-records the datadriven `TestTenantZip` as it was fixed in #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 #87141 Release note: None --- pkg/cli/zip_test.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkg/cli/zip_test.go b/pkg/cli/zip_test.go index 152bde986a48..907269dc8fb3 100644 --- a/pkg/cli/zip_test.go +++ b/pkg/cli/zip_test.go @@ -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 }