-
Notifications
You must be signed in to change notification settings - Fork 328
Adjust test to reflect _Concurrency module hiding #2313
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
base: main
Are you sure you want to change the base?
Conversation
@swift-ci please test |
@swift-ci please test |
@swift-ci test |
This comment was marked as off-topic.
This comment was marked as off-topic.
@swift-ci test |
1 similar comment
@swift-ci test |
Failure looks like we picked up swiftlang/swift-syntax#3156 without the matching swiftlang/swift#84553. |
@swift-ci test |
@swift-ci test Windows platform |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looking at this again, we need to allow both _Concurrency.swiftinterface
and Swift.swiftinterface
here because SourceKit-LSP tests need to also pass when running with the last released toolchain.
My suggestion would be to make assertSystemSwiftInterface
take an array for swiftInterfaceFile
and also add the following snippet so we remember that we can remove _Concurrency.swiftinterface
in the future
#if compiler(>=6.4)
#warning("Remove _Concurrency.swifinterface and make assertSystemSwiftInterface take a single interface file name once we no longer need to support Swift 6.2 toolchains")
#endif
d396b11
to
5ece925
Compare
@swift-ci test |
swiftlang/swift#84358 makes the `_Concurrency` module behave like a cross-import overlay of `Swift`. This changes downstream behavior in SourceKit-LSP. Update a test to reflect that change.
This is the line with the |
5ece925
to
d579d5c
Compare
@swift-ci test |
@swift-ci test Windows platform |
swiftlang/swift#84358 makes the
_Concurrency
module behave like a cross-import overlay ofSwift
. This changes downstream behavior in SourceKit-LSP. Update a test to reflect that change.