Skip to content

Commit 0b4309f

Browse files
authored
Merge pull request #25025 from slavapestov/disable-stubs-test-old-macos
Disable objc_class_resilience_stubs.swift on macOS 10.9 and 10.10
2 parents eff6c5a + 1441ad1 commit 0b4309f

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

test/Interpreter/objc_class_resilience_stubs.swift

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,10 @@ class ResilientNSObjectSubclass : ResilientNSObjectOutsideParent {}
3636

3737
// This should not crash on older runtimes because we check before
3838
// attempting to register the class stub.
39-
ResilientClassTestSuite.test("RealizeResilientClass") {
39+
ResilientClassTestSuite.test("RealizeResilientClass")
40+
.xfail(.osxMinor(10, 10, reason:
41+
"Fails on 10.9 and 10.10 -- rdar://51036773"))
42+
.code {
4043
forceMetadata()
4144
}
4245

0 commit comments

Comments
 (0)