Skip to content
Draft
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
4 changes: 1 addition & 3 deletions Tests/SwiftFormatTests/Utilities/FileIteratorTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,7 @@ final class FileIteratorTests: XCTestCase {
try touch("project/real2.swift")
try touch("project/.hidden.swift")
try touch("project/.build/generated.swift")
#if !os(WASI) // FIXME: Remove this #if
try symlink("project/link.swift", to: "project/.hidden.swift")
#endif
try symlink("project/rellink.swift", relativeTo: ".hidden.swift")

#if !(os(Windows) && compiler(<5.10))
Expand All @@ -80,7 +78,7 @@ final class FileIteratorTests: XCTestCase {
try FileManager.default.removeItem(at: tmpURL("project/real2.swift"))
try FileManager.default.removeItem(at: tmpURL("project/.hidden.swift"))
try FileManager.default.removeItem(at: tmpURL("project/.build/generated.swift"))
// FIXME: try FileManager.default.removeItem(at: tmpURL("project/link.swift"))
try FileManager.default.removeItem(at: tmpURL("project/link.swift"))
try FileManager.default.removeItem(at: tmpURL("project/rellink.swift"))
try FileManager.default.removeItem(at: tmpURL("project/cycliclink.swift"))
try FileManager.default.removeItem(at: tmpURL("project/linktolink.swift"))
Expand Down
Loading