We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 95ce2a3 commit c2b77f2Copy full SHA for c2b77f2
Tests/CommandsTests/BuildCommandTests.swift
@@ -859,6 +859,12 @@ class BuildCommandSwiftBuildTests: BuildCommandTestCases {
859
}
860
861
override func testParseableInterfaces() async throws {
862
+ #if os(Linux)
863
+ if FileManager.default.contents(atPath: "/etc/system-release")
864
+ .map { String(decoding: $0, as: UTF8.self) == "Amazon Linux release 2 (Karoo)\n" } {
865
+ throw XCTSkip("https://github.com/swiftlang/swift-package-manager/issues/8545: Test current fails on Amazon Linux 2")
866
+ }
867
+ #endif
868
try await fixture(name: "Miscellaneous/ParseableInterfaces") { fixturePath in
869
do {
870
let result = try await build(["--enable-parseable-module-interfaces"], packagePath: fixturePath)
0 commit comments