Skip to content

Commit 823d63b

Browse files
authored
Merge pull request #17853 from lorentey/skip-failing-tests
[test] Skip two Dictionary tests to unblock CI
2 parents c45a10b + ea98396 commit 823d63b

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
@@ -3431,7 +3431,9 @@ DictionaryTestSuite.test("BridgedToObjC.Verbatim.getObjects:andKeys:count:") {
34313431
// Key type and value type are bridged non-verbatim.
34323432
//===---
34333433

3434-
DictionaryTestSuite.test("BridgedToObjC.KeyValue_ValueTypesCustomBridged") {
3434+
DictionaryTestSuite.test("BridgedToObjC.KeyValue_ValueTypesCustomBridged")
3435+
.skip(.always("rdar://problem/41871587"))
3436+
.code {
34353437
let d = getBridgedNSDictionaryOfKeyValue_ValueTypesCustomBridged()
34363438
let enumerator = d.keyEnumerator()
34373439

@@ -3547,7 +3549,9 @@ func getBridgedNSDictionaryOfKey_ValueTypeCustomBridged() -> NSDictionary {
35473549
return bridged
35483550
}
35493551

3550-
DictionaryTestSuite.test("BridgedToObjC.Key_ValueTypeCustomBridged") {
3552+
DictionaryTestSuite.test("BridgedToObjC.Key_ValueTypeCustomBridged")
3553+
.skip(.always("rdar://problem/41871587"))
3554+
.code {
35513555
let d = getBridgedNSDictionaryOfKey_ValueTypeCustomBridged()
35523556
let enumerator = d.keyEnumerator()
35533557

0 commit comments

Comments
 (0)