Skip to content

Commit

Permalink
Merge #138625
Browse files Browse the repository at this point in the history
138625: pkg/cli: fix TestZipIncludeAndExcludeFilesDataDriven flakiness r=aa-joshi a=arjunmahishi

Fixes #138538
Epic: none
Release note: None

Co-authored-by: Arjun Mahishi <[email protected]>
  • Loading branch information
craig[bot] and arjunmahishi committed Jan 8, 2025
2 parents 9da6ffe + 0437962 commit 1aba403
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/cli/zip_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1376,7 +1376,7 @@ func trimNonDeterministicZipOutputFiles(out string) string {
out = re.ReplaceAllString(out, ``)
re = regexp.MustCompile(`(?m).*job_status\.txt$` + "\n")
out = re.ReplaceAllString(out, ``)
re = regexp.MustCompile(`(?m).*(memprof|memstats|memmonitoring).*\.txt$` + "\n")
re = regexp.MustCompile(`(?m).*(memprof|memstats|memmonitoring).*\.(txt|pprof)$` + "\n")
out = re.ReplaceAllString(out, ``)
re = regexp.MustCompile(`(?m).*goroutine_dump.*\.txt\.gz$` + "\n")
out = re.ReplaceAllString(out, ``)
Expand Down

0 comments on commit 1aba403

Please sign in to comment.