Skip to content

Commit 582a8e7

Browse files
authored
Test: disable a SwiftBuild test on linux (#8428)
We have to ensure LD_LIBRARY_PATH is set correctly on linux, until then, skip a test
1 parent baba429 commit 582a8e7

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

Tests/CommandsTests/BuildCommandTests.swift

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -938,4 +938,12 @@ class BuildCommandSwiftBuildTests: BuildCommandTestCases {
938938

939939
try await super.testBuildSystemDefaultSettings()
940940
}
941+
942+
override func testBuildCompleteMessage() async throws {
943+
#if os(Linux)
944+
try XCTSkip("SWBINTTODO: Need to properly set LD_LIBRARY_PATH on linux")
945+
#endif
946+
try await super.testBuildCompleteMessage()
947+
}
948+
941949
}

0 commit comments

Comments
 (0)