File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed
Plugins/PackageToJS/Tests Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -246,6 +246,9 @@ extension Trait where Self == ConditionTrait {
246
246
}
247
247
}
248
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)
249
252
@Test ( . requireSwiftSDK)
250
253
func testing( ) throws {
251
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)
316
320
317
321
@Test ( . requireSwiftSDK( triple: " wasm32-unknown-wasip1-threads " ) )
318
322
func multithreading( ) throws {
@@ -338,6 +342,8 @@ extension Trait where Self == ConditionTrait {
338
342
}
339
343
}
340
344
345
+ // FIXME: This test fails on the current main snapshot
346
+ #if !compiler(>=6.3)
341
347
@Test ( . requireEmbeddedSwiftInToolchain( triple: " wasm32-unknown-none-wasm " ) )
342
348
func embeddedWasmUnknownNone( ) throws {
343
349
try withPackage ( at: " Examples/Embedded " ) { packageDir, _, runSwift in
@@ -349,6 +355,7 @@ extension Trait where Self == ConditionTrait {
349
355
)
350
356
}
351
357
}
358
+ #endif // compiler(>=6.3)
352
359
353
360
@Test ( . requireEmbeddedSwiftInSwiftSDK( ) )
354
361
func embeddedWasmUnknownWasi( ) throws {
You can’t perform that action at this time.
0 commit comments