Skip to content

Commit 57844d3

Browse files
authored
Merge pull request #24245 from mikeash/objc-class-resilience-category-test-10.9-xfail
2 parents 3197c22 + a3e5ac1 commit 57844d3

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)