Skip to content

Commit f8dbf8e

Browse files
authored
Merge pull request #171 from neonichu/skip-flaky-filelock-tests
Skip flaky tests until they can be fixed
2 parents f94ea53 + 41a0179 commit f8dbf8e

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Tests/TSCBasicTests/FileSystemTests.swift

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -749,6 +749,9 @@ class FileSystemTests: XCTestCase {
749749
}
750750

751751
func testInMemoryFileSystemFileLock() throws {
752+
// Disabled until rdar://71560894 is fixed.
753+
try XCTSkipIf(true)
754+
752755
let fs = InMemoryFileSystem()
753756
let path = AbsolutePath("/")
754757
try fs.createDirectory(path)
@@ -807,6 +810,9 @@ class FileSystemTests: XCTestCase {
807810
}
808811

809812
func testLocalFileSystemFileLock() throws {
813+
// Disabled until rdar://71560894 is fixed.
814+
try XCTSkipIf(true)
815+
810816
try withTemporaryDirectory { tempDir in
811817
let fileA = tempDir.appending(component: "fileA")
812818
let fileB = tempDir.appending(component: "fileB")

0 commit comments

Comments
 (0)