Skip to content

Commit a3e5ac1

Browse files
committed
[Tests] XFAIL objc_class_resilience Category test on OS X 10.9.
rdar://problem/49794438
1 parent 5f823fb commit a3e5ac1

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

test/Interpreter/objc_class_resilience.swift

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,10 @@ func takesMyProtocol(_ p: MyProtocol) -> Int {
3636
return p.myMethod()
3737
}
3838

39-
ResilientClassTestSuite.test("Category") {
39+
ResilientClassTestSuite.test("Category")
40+
.xfail(.osxMinor(10, 9, reason:
41+
"Category attachment with ARCLite on 10.9 doesn't work currently"))
42+
.code {
4043
expectEqual(42, takesMyProtocol(ResilientFieldWithCategory()))
4144
}
4245

0 commit comments

Comments
 (0)