Skip to content

Commit e6047a2

Browse files
authored
Merge pull request #24247 from mikeash/objc-class-resilience-category-test-10.9-xfail-5.0
[5.0][Tests] XFAIL objc_class_resilience Category test on OS X 10.9.
2 parents b4e44cb + a888172 commit e6047a2

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)