Skip to content

Commit bd693f6

Browse files
authored
Fix testIncorrectDependencies failure on linux due to merge race (#8795)
swiftlang/swift-build#558 and #8767 had a test/merge race which caused a failure in this test on linux. Add a narrow skip to this brand new test until these changes are working together
1 parent 00bfa31 commit bd693f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tests/FunctionalTests/PluginTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1173,7 +1173,7 @@ final class PluginTests: XCTestCase {
11731173
XCTAssert(stdout.contains("Build complete!"), "output:\n\(stderr)\n\(stdout)")
11741174
}
11751175

1176-
#if !os(Windows) // https://github.com/swiftlang/swift-package-manager/issues/8774
1176+
#if os(macOS) // https://github.com/swiftlang/swift-package-manager/issues/8774
11771177
// Try again with the Swift Build build system
11781178
try await fixture(name: "Miscellaneous/Plugins") { path in
11791179
let (stdout, stderr) = try await executeSwiftBuild(path.appending("IncorrectDependencies"), extraArgs: ["--build-system", "swiftbuild", "--build-tests"])

0 commit comments

Comments
 (0)