@@ -24,13 +24,6 @@ import XCTest
2424final class WorkspaceTests : XCTestCase {
2525
2626 func testMultipleSwiftPMWorkspaces( ) async throws {
27- #if os(Windows)
28- // FIXME: Enable when https://github.com/swiftlang/swift-package-manager/issues/8038 is fixed
29- try XCTSkipIf (
30- true ,
31- " SwiftPM tests fail nondeterministically due to https://github.com/swiftlang/swift-package-manager/issues/8038 "
32- )
33- #endif
3427 // The package manifest is the same for both packages we open.
3528 let packageManifest = """
3629 // swift-tools-version: 5.7
@@ -167,13 +160,6 @@ final class WorkspaceTests: XCTestCase {
167160 }
168161
169162 func testOpenPackageManifestInMultiSwiftPMWorkspaceSetup( ) async throws {
170- #if os(Windows)
171- // FIXME: Enable when https://github.com/swiftlang/swift-package-manager/issues/8038 is fixed
172- try XCTSkipIf (
173- true ,
174- " SwiftPM tests fail nondeterministically due to https://github.com/swiftlang/swift-package-manager/issues/8038 "
175- )
176- #endif
177163 let project = try await MultiFileTestProject (
178164 files: [
179165 // PackageA
@@ -250,13 +236,6 @@ final class WorkspaceTests: XCTestCase {
250236 }
251237
252238 func testSwiftPMPackageInSubfolder( ) async throws {
253- #if os(Windows)
254- // FIXME: Enable when https://github.com/swiftlang/swift-package-manager/issues/8038 is fixed
255- try XCTSkipIf (
256- true ,
257- " SwiftPM tests fail nondeterministically due to https://github.com/swiftlang/swift-package-manager/issues/8038 "
258- )
259- #endif
260239 let packageManifest = """
261240 // swift-tools-version: 5.7
262241
@@ -336,13 +315,6 @@ final class WorkspaceTests: XCTestCase {
336315 }
337316
338317 func testNestedSwiftPMWorkspacesWithoutDedicatedWorkspaceFolder( ) async throws {
339- #if os(Windows)
340- // FIXME: Enable when https://github.com/swiftlang/swift-package-manager/issues/8038 is fixed
341- try XCTSkipIf (
342- true ,
343- " SwiftPM tests fail nondeterministically due to https://github.com/swiftlang/swift-package-manager/issues/8038 "
344- )
345- #endif
346318 // The package manifest is the same for both packages we open.
347319 let packageManifest = """
348320 // swift-tools-version: 5.7
@@ -525,13 +497,6 @@ final class WorkspaceTests: XCTestCase {
525497 }
526498
527499 func testRecomputeFileWorkspaceMembershipOnPackageSwiftChange( ) async throws {
528- #if os(Windows)
529- // FIXME: Enable when https://github.com/swiftlang/swift-package-manager/issues/8038 is fixed
530- try XCTSkipIf (
531- true ,
532- " SwiftPM tests fail nondeterministically due to https://github.com/swiftlang/swift-package-manager/issues/8038 "
533- )
534- #endif
535500 let project = try await MultiFileTestProject (
536501 files: [
537502 " PackageA/Sources/MyLibrary/libA.swift " : " " ,
@@ -671,13 +636,6 @@ final class WorkspaceTests: XCTestCase {
671636 }
672637
673638 func testChangeWorkspaceFolders( ) async throws {
674- #if os(Windows)
675- // FIXME: Enable when https://github.com/swiftlang/swift-package-manager/issues/8038 is fixed
676- try XCTSkipIf (
677- true ,
678- " SwiftPM tests fail nondeterministically due to https://github.com/swiftlang/swift-package-manager/issues/8038 "
679- )
680- #endif
681639 let project = try await MultiFileTestProject (
682640 files: [
683641 " subdir/Sources/otherPackage/otherPackage.swift " : """
0 commit comments