Skip to content

Commit 9093dd7

Browse files
committed
[test/SourceKit] Re-enable and update tests after recent stdlib changes
rdar://35799113
1 parent 5341155 commit 9093dd7

File tree

4 files changed

+3
-20
lines changed

4 files changed

+3
-20
lines changed

test/NameBinding/named_lazy_member_loading_swift_derived_class_type.swift

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@
88
// RUN: %target-swift-frontend -typecheck -I %t -stats-output-dir %t/stats-post %s
99
// RUN: %utils/process-stats-dir.py --evaluate-delta 'NumDeclsDeserialized < -10' %t/stats-pre %t/stats-post
1010

11-
// REQUIRES: rdar35799113
12-
1311
import NamedLazyMembers
1412

1513
public func test(i: DerivedClass.derivedMemberType1) -> DerivedClass.derivedMemberType1 {

test/SourceKit/DocSupport/doc_clang_module.swift

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,3 @@
22
// RUN: %sourcekitd-test -req=doc-info -module Foo -- -F %S/../Inputs/libIDE-mock-sdk \
33
// RUN: %mcp_opt %clang-importer-sdk | %sed_clean > %t.response
44
// RUN: diff -u %s.response %t.response
5-
//
6-
// REQUIRES: rdar35799113
7-
//

test/SourceKit/DocSupport/doc_clang_module.swift.response

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5532,16 +5532,6 @@ var FooSubUnnamedEnumeratorA1: Int { get }
55325532
key.length: 62,
55335533
key.fully_annotated_decl: "<decl.typealias><syntaxtype.keyword>typealias</syntaxtype.keyword> <decl.name>FooStruct1Pointer</decl.name> = <ref.struct usr=\"s:Sp\">UnsafeMutablePointer</ref.struct>&lt;<ref.struct usr=\"c:@S@FooStruct1\">FooStruct1</ref.struct>&gt;</decl.typealias>",
55345534
key.conforms: [
5535-
{
5536-
key.kind: source.lang.swift.ref.protocol,
5537-
key.name: "Strideable",
5538-
key.usr: "s:s10StrideableP"
5539-
},
5540-
{
5541-
key.kind: source.lang.swift.ref.protocol,
5542-
key.name: "Hashable",
5543-
key.usr: "s:s8HashableP"
5544-
},
55455535
{
55465536
key.kind: source.lang.swift.ref.protocol,
55475537
key.name: "_Pointer",

test/SourceKit/InterfaceGen/gen_swift_type.swift

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@
55
// RUN: %sourcekitd-test -req=interface-gen -usr _TtGC14gen_swift_type1DCS_2T1_ %s -- %s | %FileCheck -check-prefix=CHECK5 %s
66
// RUN: %sourcekitd-test -req=interface-gen -usr _TtGC14gen_swift_type1DSi_ %s -- %s | %FileCheck -check-prefix=CHECK6 %s
77

8-
// REQUIRES: rdar35799113
9-
108
public struct A {
119
public func fa() {}
1210
}
@@ -31,16 +29,16 @@ struct S1 {
3129
_ = a.count
3230
}
3331
}
34-
// CHECK1: public struct Array<Int> : RandomAccessCollection, MutableCollection {
32+
// CHECK1: public struct Array<Int>
3533

36-
// CHECK2: public struct Array<String> : RandomAccessCollection, MutableCollection {
34+
// CHECK2: public struct Array<String>
3735

3836
// CHECK3: public struct A
3937
// CHECK3: public func fa()
4038
// CHECK3: public func fea1()
4139
// CHECK3: public func fea2()
4240

43-
// CHECK4: public struct Array<A> : RandomAccessCollection, MutableCollection {
41+
// CHECK4: public struct Array<A>
4442

4543
public protocol P1 { }
4644
public class T1 : P1 { }

0 commit comments

Comments
 (0)