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 a95a454 commit 86b1bf8Copy full SHA for 86b1bf8
test/Concurrency/Runtime/checked_continuation.swift
@@ -15,6 +15,8 @@ struct TestError: Error {}
15
var tests = TestSuite("CheckedContinuation")
16
17
if #available(SwiftStdlib 5.5, *) {
18
+// Disable crash tests
19
+#if !os(WASI)
20
tests.test("trap on double resume non-throwing continuation") {
21
expectCrashLater()
22
@@ -41,7 +43,7 @@ struct TestError: Error {}
41
43
}
42
44
await task.get()
45
-
46
+#endif
47
tests.test("test withCheckedThrowingContinuation") {
48
let task2 = detach {
49
do {
0 commit comments