make test filter permissive of bdist.win32 (#10911)

I swear a few days ago there were way more of this filter but now
there's only one so *shrug*.
This commit is contained in:
Aria Desires 2025-01-23 14:13:00 -05:00 committed by GitHub
parent 0f1987b8ed
commit 86f2f16d05
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -1464,7 +1464,7 @@ fn tool_install_uninstallable() {
.into_iter() .into_iter()
.chain([ .chain([
(r"exit code: 1", "exit status: 1"), (r"exit code: 1", "exit status: 1"),
(r"bdist\.[^/\\\s]+-[^/\\\s]+", "bdist.linux-x86_64"), (r"bdist\.[^/\\\s]+(-[^/\\\s]+)?", "bdist.linux-x86_64"),
(r"\\\.", ""), (r"\\\.", ""),
(r"#+", "#"), (r"#+", "#"),
]) ])