Skip to content

Commit 71f5b6f

Browse files
committed
Disable exit tests on Linux for now
1 parent 1f8e8c9 commit 71f5b6f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Package.swift

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,9 @@ let wasiLibcCSettings: [CSetting] = [
7676
]
7777

7878
let testOnlySwiftSettings: [SwiftSetting] = [
79-
.define("FOUNDATION_EXIT_TESTS", .when(platforms: [.macOS, .linux])) // The latest Windows toolchain does not yet have exit tests in swift-testing
79+
// The latest Windows toolchain does not yet have exit tests in swift-testing
80+
// Enabling exit tests currently causes tests to hang in the full toolchain Linux CI
81+
.define("FOUNDATION_EXIT_TESTS", .when(platforms: [.macOS]))
8082
]
8183

8284
let package = Package(

0 commit comments

Comments
 (0)