We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39f663c commit 851a488Copy full SHA for 851a488
Plugins/PackageToJS/Tests/ExampleTests.swift
@@ -246,6 +246,9 @@ extension Trait where Self == ConditionTrait {
246
}
247
248
249
+ // FIXME: This test fails on Swift 6.3 and later due to memory corruption
250
+ // Enable it back when https://github.com/swiftlang/swift-driver/pull/1987 is included in the snapshot
251
+ #if !compiler(>=6.3)
252
@Test(.requireSwiftSDK)
253
func testing() throws {
254
let swiftSDKID = try #require(Self.getSwiftSDKID())
@@ -313,6 +316,7 @@ extension Trait where Self == ConditionTrait {
313
316
314
317
315
318
#endif
319
+ #endif // compiler(>=6.3)
320
321
@Test(.requireSwiftSDK(triple: "wasm32-unknown-wasip1-threads"))
322
func multithreading() throws {
0 commit comments