Skip to content

Commit 1c34dbe

Browse files
authored
Merge pull request #17872 from lorentey/crashes-scare-counters
2 parents ad12cc9 + d1fd33f commit 1c34dbe

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

validation-test/stdlib/Dictionary.swift

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3416,7 +3416,9 @@ func checkGetObjectsAndKeys(
34163416
withExtendedLifetime(canary) {}
34173417
}
34183418

3419-
DictionaryTestSuite.test("BridgedToObjC.Verbatim.getObjects:andKeys:count:") {
3419+
DictionaryTestSuite.test("BridgedToObjC.Verbatim.getObjects:andKeys:count:")
3420+
.skip(.always("rdar://problem/41871587"))
3421+
.code {
34203422
let d = getBridgedNSDictionaryOfRefTypesBridgedVerbatim()
34213423
for count in 0 ..< d.count + 2 {
34223424
checkGetObjectsAndKeys(d, count: count)
@@ -3521,7 +3523,9 @@ DictionaryTestSuite.test("BridgedToObjC.Custom.FastEnumeration_Empty") {
35213523
{ ($0 as! TestObjCValueTy).value })
35223524
}
35233525

3524-
DictionaryTestSuite.test("BridgedToObjC.Custom.getObjects:andKeys:count:") {
3526+
DictionaryTestSuite.test("BridgedToObjC.Custom.getObjects:andKeys:count:")
3527+
.skip(.always("rdar://problem/41871587"))
3528+
.code {
35253529
let d = getBridgedNSDictionaryOfKeyValue_ValueTypesCustomBridged()
35263530
for count in 0 ..< d.count + 2 {
35273531
checkGetObjectsAndKeys(d, count: count)

0 commit comments

Comments
 (0)