Skip to content

Commit 29bff80

Browse files
authored
Unskip most of associated_type_demangle_private (#25657)
There’s only one specific case that isn’t working correctly right now; re-enable the rest of the test. rdar://problem/51959305
1 parent fd57a08 commit 29bff80

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

test/Runtime/associated_type_demangle_private.swift

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
// RUN: %target-codesign %t/a.out
44
// RUN: %target-run %t/a.out
55
// REQUIRES: executable_test
6-
// REQUIRES: rdar51959305
76

87
import Swift
98
import StdlibUnittest
@@ -107,7 +106,9 @@ AssociatedTypeDemangleTests.test("nested private generic types in associated typ
107106
else if #available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *) {}
108107
// Bug is still present in Swift 5.0 runtime.
109108
else {
110-
expectCrashLater(withMessage: "failed to demangle witness for associated type 'Second' in conformance")
109+
// FIXME: rdar://problem/51959305
110+
// expectCrashLater(withMessage: "failed to demangle witness for associated type 'Second' in conformance")
111+
return
111112
}
112113

113114
_ = Parent<Never>.Nested(first: "String", second: 0).pair

0 commit comments

Comments
 (0)