Skip to content

Commit 9dbe676

Browse files
authored
Merge pull request #22930 from lorentey/xfail-dictionary-invalidation-test-5.1
[5.1][test] Dictionary: Skip a failing index validation test
2 parents 81d7060 + 957a26a commit 9dbe676

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

validation-test/stdlib/Dictionary.swift

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5239,7 +5239,9 @@ DictionaryTestSuite.test("Values.MutationDoesNotInvalidateIndices.Native") {
52395239
}
52405240

52415241
#if _runtime(_ObjC)
5242-
DictionaryTestSuite.test("Values.MutationDoesNotInvalidateIndices.Bridged") {
5242+
DictionaryTestSuite.test("Values.MutationDoesNotInvalidateIndices.Bridged")
5243+
.skip(.always("rdar://problem/47973577"))
5244+
.code {
52435245
let objects: [NSNumber] = [1, 2, 3, 4]
52445246
let keys: [NSString] = ["Blanche", "Rose", "Dorothy", "Sophia"]
52455247
let ns = NSDictionary(objects: objects, forKeys: keys)

0 commit comments

Comments
 (0)