Skip to content

Commit b175dd8

Browse files
authored
Properly disable testBuildCompleteMessage on Linux for SwiftBuild (#8444)
1 parent b8b545d commit b175dd8

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Tests/CommandsTests/BuildCommandTests.swift

+3-2
Original file line numberDiff line numberDiff line change
@@ -941,9 +941,10 @@ class BuildCommandSwiftBuildTests: BuildCommandTestCases {
941941

942942
override func testBuildCompleteMessage() async throws {
943943
#if os(Linux)
944-
try XCTSkip("SWBINTTODO: Need to properly set LD_LIBRARY_PATH on linux")
945-
#endif
944+
throw XCTSkip("SWBINTTODO: Need to properly set LD_LIBRARY_PATH on linux")
945+
#else
946946
try await super.testBuildCompleteMessage()
947+
#endif
947948
}
948949

949950
}

0 commit comments

Comments
 (0)