-
Notifications
You must be signed in to change notification settings - Fork 10.5k
Relax FileCheck directives for skip_clean_llbuild.test
#66062
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Relax FileCheck directives for skip_clean_llbuild.test
#66062
Conversation
This is needed short term to allow the test to pass when running on Python 3.11 and later and avoid errors like ``` <stdin>:44:1: note: non-matching line after previous match is here <string>:1: DeprecationWarning: 'pipes' is deprecated and slated for removal in Python 3.13 ^ ``` Long term we want to replace uses of the obsolete `pipes.quotes` function with `shlex.quotes`. Addresses rdar://109664710
@swift please test |
@swift-ci please test Apple Silicon |
@swift-ci please build toolchain |
This is needed short term to allow the test to pass when running on Python 3.11 and later and avoid errors like ``` <stdin>:44:1: note: non-matching line after previous match is here <string>:1: DeprecationWarning: 'pipes' is deprecated and slated for removal in Python 3.13 ^ ``` Long term we want to replace uses of the obsolete `pipes.quotes` function with `shlex.quotes`. Addresses rdar://109664710 (cherry picked from commit 1534925, swiftlang#66062)
This is needed short term to allow the test to pass when running on Python 3.11 and later and avoid errors like ``` <stdin>:44:1: note: non-matching line after previous match is here <string>:1: DeprecationWarning: 'pipes' is deprecated and slated for removal in Python 3.13 ^ ``` Long term we want to replace uses of the obsolete `pipes.quotes` function with `shlex.quotes`. Addresses rdar://109664710 (cherry picked from commit 1534925, swiftlang#66062)
Apple Silicon test is failing for unrelated failures, but this test is now passing
|
@swift-ci please test |
@swift-ci please build toolchain |
@swift-ci please test Apple Silicon |
The macOS toolchain job is failing with an unrelated failure when configuring LLDB
|
The Apple Silicon bot is now hitting a failure when testing llbuild
|
Also verified the test still passes for the regular macOS PR testing
|
…6062) This is needed short term to allow the test to pass when running on Python 3.11 and later and avoid errors like ``` <stdin>:44:1: note: non-matching line after previous match is here <string>:1: DeprecationWarning: 'pipes' is deprecated and slated for removal in Python 3.13 ^ ``` Long term we want to replace uses of the obsolete `pipes.quotes` function with `shlex.quotes`. Addresses rdar://109664710
This is needed short term to allow the test to pass when running on Python 3.11 and later and avoid errors like
Long term we want to replace uses of the obsolete
pipes.quotes
function withshlex.quotes
.Addresses rdar://109664710