Skip to content

Commit 1f7a7b6

Browse files
committed
[test] XFAIL MapKit NSValue bridging tests on older OSs for now
Part of rdar://problem/44866579. This bears further investigation.
1 parent a56c621 commit 1f7a7b6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/stdlib/MapKit.swift

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,9 @@ func spansEqual(_ x: MKCoordinateSpan, _ y: MKCoordinateSpan)
2121

2222
if #available(tvOS 9.2, *) {
2323
mapKit.test("NSValue bridging")
24-
.skip(.iOSMinor(9, 3, reason: "<rdar://problem/41440036>")).code {
24+
.xfail(.iOSMinor(9, 3, reason: "<rdar://problem/41440036>"))
25+
.xfail(.osxMinorRange(10, 9...10, reason: "<rdar://problem/44866579>"))
26+
.code {
2527
expectBridgeToNSValue(CLLocationCoordinate2D(latitude: 17, longitude: 38),
2628
nsValueInitializer: { NSValue(mkCoordinate: $0) },
2729
nsValueGetter: { $0.mkCoordinateValue },

0 commit comments

Comments
 (0)