[test] Temporarily disable String.completePath() test.

This commit is contained in:
Greg Parker
2016-12-09 01:57:18 -08:00
committed by Greg Parker
parent d8f08d44a3
commit df7ad7cb12

View File

@@ -363,8 +363,12 @@ NSStringAPIs.test("compare(_:options:range:locale:)") {
"абв".compare("абв", locale: Locale.current))
}
NSStringAPIs.test("completePath(into:caseSensitive:matchesInto:filterTypes)") {
NSStringAPIs.test("completePath(into:caseSensitive:matchesInto:filterTypes)")
// FIXME: temporarily disabled due to OS problems
.skip(.always("rdar://29593261"))
.code {
let (existingPath, nonExistentPath) = createNSStringTemporaryFile()
do {
var count = nonExistentPath.completePath(caseSensitive: false)
expectEqual(0, count)