From 11aa1e701724c1134e2a0245ee18b98ff50eabcb Mon Sep 17 00:00:00 2001 From: Owen Voorhees Date: Mon, 9 Jun 2025 17:22:44 -0700 Subject: [PATCH] Fix testIncorrectDependencies failure on linux due to merge race --- Tests/FunctionalTests/PluginTests.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/FunctionalTests/PluginTests.swift b/Tests/FunctionalTests/PluginTests.swift index d5f3c22585f..ccb7fe4853b 100644 --- a/Tests/FunctionalTests/PluginTests.swift +++ b/Tests/FunctionalTests/PluginTests.swift @@ -1173,7 +1173,7 @@ final class PluginTests: XCTestCase { XCTAssert(stdout.contains("Build complete!"), "output:\n\(stderr)\n\(stdout)") } -#if !os(Windows) // https://github.com/swiftlang/swift-package-manager/issues/8774 +#if os(macOS) // https://github.com/swiftlang/swift-package-manager/issues/8774 // Try again with the Swift Build build system try await fixture(name: "Miscellaneous/Plugins") { path in let (stdout, stderr) = try await executeSwiftBuild(path.appending("IncorrectDependencies"), extraArgs: ["--build-system", "swiftbuild", "--build-tests"])