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 d8f08d4 commit df7ad7cCopy full SHA for df7ad7c
test/stdlib/NSStringAPI.swift
@@ -363,8 +363,12 @@ NSStringAPIs.test("compare(_:options:range:locale:)") {
363
"абв".compare("абв", locale: Locale.current))
364
}
365
366
-NSStringAPIs.test("completePath(into:caseSensitive:matchesInto:filterTypes)") {
+NSStringAPIs.test("completePath(into:caseSensitive:matchesInto:filterTypes)")
367
+ // FIXME: temporarily disabled due to OS problems
368
+ .skip(.always("rdar://29593261"))
369
+ .code {
370
let (existingPath, nonExistentPath) = createNSStringTemporaryFile()
371
+
372
do {
373
var count = nonExistentPath.completePath(caseSensitive: false)
374
expectEqual(0, count)
0 commit comments