Skip to content

Commit e9aafba

Browse files
authored
Merge pull request #725 from CodaFi/ive-been-working-on-the-building
Disable explicit module builds test
2 parents 8e8a56d + 9e8325d commit e9aafba

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

Tests/SwiftDriverTests/ExplicitModuleBuildTests.swift

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -586,6 +586,8 @@ final class ExplicitModuleBuildTests: XCTestCase {
586586
}
587587

588588
func testExplicitModuleBuildEndToEnd() throws {
589+
throw XCTSkip("rdar://79594631")
590+
/*
589591
// The macOS-only restriction is temporary while Clang's dependency scanner
590592
// is gaining the ability to perform name-based module lookup.
591593
#if os(macOS)
@@ -615,6 +617,7 @@ final class ExplicitModuleBuildTests: XCTestCase {
615617
XCTAssertFalse(driver.diagnosticEngine.hasErrors)
616618
}
617619
#endif
620+
*/
618621
}
619622

620623
func getStdlibShimsPaths(_ driver: Driver) throws -> (AbsolutePath, AbsolutePath) {

Tests/SwiftDriverTests/ParsableMessageTests.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -354,9 +354,10 @@ final class ParsableMessageTests: XCTestCase {
354354
$0 <<< "print(\"hello, world!\")"
355355
}
356356
let diags = DiagnosticsEngine()
357+
let sdkArgumentsForTesting = (try? Driver.sdkArgumentsForTesting()) ?? []
357358
var driver = try Driver(args: ["swiftc", main.pathString,
358359
"-use-frontend-parseable-output",
359-
"-o", output.pathString],
360+
"-o", output.pathString] + sdkArgumentsForTesting,
360361
env: ProcessEnv.vars,
361362
diagnosticsEngine: diags,
362363
fileSystem: localFileSystem)

0 commit comments

Comments
 (0)