Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions IntegrationTests/Tests/IntegrationTests/SwiftPMTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,8 @@ final class SwiftPMTests: XCTestCase {
}
}

#if !os(Windows)
// SWBINTTODO: Windows fails to link this library package due to a "lld-link: error: subsystem must be defined" error. See https://github.com/swiftlang/swift-build/issues/310
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

suggestion: Instead of compile this out of the test, can we move this to it's own test and mark it skipped on windows?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let's do that in a separate change.

do {
try withTemporaryDirectory { tmpDir in
let packagePath = tmpDir.appending(component: "foo")
Expand All @@ -79,6 +81,7 @@ final class SwiftPMTests: XCTestCase {
//try sh(swiftTest, "--package-path", packagePath, "--build-system", "swiftbuild")
}
}
#endif
}

func testArchCustomization() throws {
Expand Down