Skip to content

Commit ca3b452

Browse files
authored
Merge pull request #384 from rintaro/skiptest-rdar76191577
XCTSkip failing test cases.
2 parents 9aa970c + aae4f3a commit ca3b452

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

Tests/SKSwiftPMWorkspaceTests/SwiftPMWorkspaceTests.swift

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,9 @@ final class SwiftPMWorkspaceTests: XCTestCase {
8282
}
8383
}
8484

85-
func testBasicSwiftArgs() {
85+
func testBasicSwiftArgs() throws {
86+
throw XCTSkip("rdar://76191577");
87+
8688
// FIXME: should be possible to use InMemoryFileSystem.
8789
let fs = localFileSystem
8890
try! withTemporaryDirectory(removeTreeOnDeinit: true) { tempDir in
@@ -320,7 +322,9 @@ final class SwiftPMWorkspaceTests: XCTestCase {
320322
}
321323
}
322324

323-
func testBasicCXXArgs() {
325+
func testBasicCXXArgs() throws {
326+
throw XCTSkip("rdar://76191577");
327+
324328
// FIXME: should be possible to use InMemoryFileSystem.
325329
let fs = localFileSystem
326330
try! withTemporaryDirectory(removeTreeOnDeinit: true) { tempDir in

0 commit comments

Comments
 (0)