Skip to content

Commit 3304744

Browse files
Merge pull request #61130 from AnthonyLatsis/migrate-test-suite-to-gh-issues-26
Gardening: Migrate test suite to GH issues p. 26
2 parents ab2e6df + 0619557 commit 3304744

File tree

93 files changed

+200
-25
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

93 files changed

+200
-25
lines changed

validation-test/Casting/Inputs/BoxingCasts.swift.gyb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,15 +117,15 @@ all_boxes = [
117117
]
118118
protocol_boxes = [
119119
Box(name="PublicProtocol"),
120-
# Box(name="FilePrivateProtocol"), # Blocked by SR-2620 aka rdar://28281488
120+
# Box(name="FilePrivateProtocol"), # FIXME: Blocked by https://github.com/apple/swift/issues/45225 (rdar://28281488)
121121
Box(name="InternalProtocol"),
122122
]
123123

124124
# Describes a base object that will be subject to a variety of casts
125125
default_protocols = [
126126
"PublicProtocol",
127127
"InternalProtocol",
128-
# "FilePrivateProtocol" # Blocked by SR-2620 aka rdar://28281488
128+
# "FilePrivateProtocol" # FIXME: Blocked by https://github.com/apple/swift/issues/45225 (rdar://28281488)
129129
]
130130

131131
class Contents:
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
// RUN: %target-swift-frontend %s -parse -emit-silgen
22

3-
// <https://bugs.swift.org/browse/SR-3267>
3+
// https://github.com/apple/swift/issues/45855
4+
45
let function: () -> Any = { () -> Void in }

validation-test/compiler_crashers_2_fixed/0046-recursive-generic-arg-in-inherited-clause.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
// RUN: not %target-swift-frontend %s -emit-ir
22

3-
// https://bugs.swift.org/browse/SR-3354
3+
// https://github.com/apple/swift/issues/45942
4+
45
class A {
56
class T {
67
class b: Array<T> {

validation-test/compiler_crashers_2_fixed/0047-sr1307.swift renamed to validation-test/compiler_crashers_2_fixed/0047-issue-43915.swift

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
// RUN: %target-swift-frontend %s -emit-ir
22

3+
// https://github.com/apple/swift/issues/43915
4+
35
enum SampleType: UInt8 {
46
case Value = 1
57
case Array

validation-test/compiler_crashers_2_fixed/0048-sr2333.swift renamed to validation-test/compiler_crashers_2_fixed/0048-issue-44940.swift

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
// RUN: %target-swift-frontend %s -emit-ir
22

3+
// https://github.com/apple/swift/issues/44940
4+
35
public protocol Proto {
46
associatedtype One
57
associatedtype Two

validation-test/compiler_crashers_2_fixed/0049-sr2611.swift renamed to validation-test/compiler_crashers_2_fixed/0049-issue-45216.swift

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
// RUN: %target-swift-frontend %s -emit-ir
22

3+
// https://github.com/apple/swift/issues/45216
4+
35
protocol Foo {
46
associatedtype A
57
var value: A { get }

validation-test/compiler_crashers_2_fixed/0050-sr3159.swift renamed to validation-test/compiler_crashers_2_fixed/0050-issue-45747.swift

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
// RUN: %target-swift-frontend %s -emit-ir
22

3+
// https://github.com/apple/swift/issues/45747
4+
35
public class Entity{
46
}
57
public class DataCollection<T>{

validation-test/compiler_crashers_2_fixed/0051-sr3212.swift renamed to validation-test/compiler_crashers_2_fixed/0051-issue-45800.swift

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
// RUN: %target-swift-frontend %s -emit-silgen
22

3+
// https://github.com/apple/swift/issues/45800
4+
35
protocol CType {
46
init()
57
}

validation-test/compiler_crashers_2_fixed/0052-sr3478.swift renamed to validation-test/compiler_crashers_2_fixed/0052-issue-46066.swift

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
// RUN: %target-swift-frontend %s -typecheck
22

3+
// https://github.com/apple/swift/issues/46066
4+
35
protocol P {
46
associatedtype A
57
}

validation-test/compiler_crashers_2_fixed/0053-sr490.swift renamed to validation-test/compiler_crashers_2_fixed/0053-issue-43107.swift

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
// RUN: %target-swift-frontend %s -emit-ir
22

3+
// https://github.com/apple/swift/issues/43107
4+
35
enum Value {
46
case IntValue(Int)
57
}

0 commit comments

Comments
 (0)