We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a0f48aa commit f371b79Copy full SHA for f371b79
test/stdlib/StringAPI.swift
@@ -319,6 +319,7 @@ StringTests.test("SameTypeComparisons") {
319
expectFalse(xs != xs)
320
}
321
322
+#if !os(WASI)
323
StringTests.test("CompareStringsWithUnpairedSurrogates")
324
.xfail(
325
.always("<rdar://problem/18029104> Strings referring to underlying " +
@@ -334,6 +335,7 @@ StringTests.test("CompareStringsWithUnpairedSurrogates")
334
335
]
336
)
337
338
+#endif
339
340
StringTests.test("[String].joined() -> String") {
341
let s = ["hello", "world"].joined()
0 commit comments