-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
Implement --enable-parseable-module-interfaces for swift-build buildsystem #8421
base: main
Are you sure you want to change the base?
Conversation
@swift-ci test |
395acee
to
4047680
Compare
@swift-ci test |
4047680
to
0392765
Compare
@swift-ci test |
0392765
to
c74d017
Compare
@swift-ci test |
c74d017
to
32b7a28
Compare
@@ -70,7 +70,19 @@ class BuildCommandTestCases: CommandsBuildProviderTestCase { | |||
// is what `binContents` is meant to represent. | |||
return contents != ["output-file-map.json"] | |||
} | |||
let moduleContents = (try? localFileSystem.getDirectoryContents(binPath.appending(component: "Modules"))) ?? [] | |||
var moduleContents: [String] = [] | |||
if buildSystemProvider == .native { |
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.
suggestion: instead of creating an if
statement to control the behaviour of the build
function, can we instead call a function that is overridden in the sub classes?
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.
I think this should wait since we will be moving to swift testing, we can refactor these tests better.
@@ -190,48 +202,6 @@ class BuildCommandTestCases: CommandsBuildProviderTestCase { | |||
} | |||
} | |||
|
|||
func testBinSymlink() async throws { |
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.
suggestion: In order to ensure the "concrete" class implement this this, can we keep an implementation that will fail, forcing the subclasses to implement the test?
This way, we are guaranteed that each sub-class will implement this test.
…ystem - this also fixes -enable-library-evolution when used as a unsafeFlags Closes: 8337
32b7a28
to
6420013
Compare
@swift-ci test |
1 similar comment
@swift-ci test |
@swift-ci please test self hosted windows |
Closes: #8337
Modifications:
sets SWIFT_EMIT_MODULE_INTERFACE build setting when option is set
Result:
the build option will include the .swftinertface files in the module folder