mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
* Fixup tests to handle new json based output. * Use llvm-nm & readtapi to verify tbd file outputs. resolves: rdar://117604275
311 lines
8.5 KiB
Swift
311 lines
8.5 KiB
Swift
// REQUIRES: VENDOR=apple
|
|
// RUN: %target-swift-frontend -emit-ir -o/dev/null -parse-as-library -module-name test -validate-tbd-against-ir=all %s
|
|
// RUN: %target-swift-frontend -emit-ir -o/dev/null -parse-as-library -module-name test -validate-tbd-against-ir=all %s -enable-library-evolution
|
|
// RUN: %target-swift-frontend -emit-ir -o/dev/null -parse-as-library -module-name test -validate-tbd-against-ir=all %s -enable-testing
|
|
// RUN: %target-swift-frontend -emit-ir -o/dev/null -parse-as-library -module-name test -validate-tbd-against-ir=all %s -enable-library-evolution -enable-testing
|
|
// RUN: %target-swift-frontend -emit-ir -o/dev/null -parse-as-library -module-name test -validate-tbd-against-ir=all %s -O
|
|
// RUN: %target-swift-frontend -emit-ir -o/dev/null -parse-as-library -module-name test -validate-tbd-against-ir=all %s -enable-library-evolution -O
|
|
// RUN: %target-swift-frontend -emit-ir -o/dev/null -parse-as-library -module-name test -validate-tbd-against-ir=all %s -enable-testing -O
|
|
// RUN: %target-swift-frontend -emit-ir -o/dev/null -parse-as-library -module-name test -validate-tbd-against-ir=all %s -enable-library-evolution -enable-testing -O
|
|
|
|
// RUN: %empty-directory(%t)
|
|
// RUN: %target-swift-frontend -typecheck -parse-as-library -module-name test %s -emit-tbd -emit-tbd-path %t/typecheck.tbd -tbd-install_name test
|
|
// RUN: %target-swift-frontend -emit-ir -parse-as-library -module-name test %s -emit-tbd -emit-tbd-path %t/emit-ir.tbd -tbd-install_name test
|
|
// RUN: %llvm-readtapi --compare %t/typecheck.tbd %t/emit-ir.tbd
|
|
|
|
public struct StructPublicNothing {}
|
|
|
|
public struct StructPublicInit {
|
|
public init() {}
|
|
|
|
public init(public_: Int) {}
|
|
internal init(internal_: Int) {}
|
|
private init(private_: Int) {}
|
|
}
|
|
|
|
public struct StructPublicMethods {
|
|
public init() {}
|
|
public func publicMethod() {}
|
|
internal func internalMethod() {}
|
|
private func privateMethod() {}
|
|
}
|
|
|
|
public struct StructPublicProperties {
|
|
public let publicLet: Int = 0
|
|
internal let internalLet: Int = 0
|
|
private let privateLet: Int = 0
|
|
|
|
public var publicVar: Int = 0
|
|
internal var internalVar: Int = 0
|
|
private var privateVar: Int = 0
|
|
|
|
public var publicVarGet: Int { return 0 }
|
|
internal var internalVarGet: Int { return 0 }
|
|
private var privateVarGet: Int { return 0 }
|
|
|
|
public var publicVarGetSet: Int {
|
|
get { return 0 }
|
|
set {}
|
|
}
|
|
internal var internalVarGetSet: Int {
|
|
get { return 0 }
|
|
set {}
|
|
}
|
|
private var privateVarGetSet: Int {
|
|
get { return 0 }
|
|
set {}
|
|
}
|
|
}
|
|
|
|
public struct StructPublicSubscripts {
|
|
public subscript(publicGet _: Int) -> Int { return 0 }
|
|
internal subscript(internalGet _: Int) -> Int { return 0 }
|
|
private subscript(privateGet _: Int) -> Int { return 0 }
|
|
|
|
public subscript(publicGetSet _: Int) -> Int {
|
|
get {return 0 }
|
|
set {}
|
|
}
|
|
internal subscript(internalGetSet _: Int) -> Int {
|
|
get {return 0 }
|
|
set {}
|
|
}
|
|
private subscript(privateGetSet _: Int) -> Int {
|
|
get {return 0 }
|
|
set {}
|
|
}
|
|
}
|
|
|
|
public struct StructPublicStatics {
|
|
public static func publicStaticFunc() {}
|
|
internal static func internalStaticFunc() {}
|
|
private static func privateStaticFunc() {}
|
|
|
|
public static let publicLet: Int = 0
|
|
internal static let internalLet: Int = 0
|
|
private static let privateLet: Int = 0
|
|
|
|
public static var publicVar: Int = 0
|
|
internal static var internalVar: Int = 0
|
|
private static var privateVar: Int = 0
|
|
|
|
public static var publicVarGet: Int { return 0 }
|
|
internal static var internalVarGet: Int { return 0 }
|
|
private static var privateVarGet: Int { return 0 }
|
|
|
|
public static var publicVarGetSet: Int {
|
|
get { return 0 }
|
|
set {}
|
|
}
|
|
internal static var internalVarGetSet: Int {
|
|
get { return 0 }
|
|
set {}
|
|
}
|
|
private static var privateVarGetSet: Int {
|
|
get { return 0 }
|
|
set {}
|
|
}
|
|
}
|
|
|
|
public struct StructPublicGeneric<T, U, V> {
|
|
public var publicVar: T
|
|
internal var internalVar: U
|
|
private var privateVar: V
|
|
|
|
public var publicVarConcrete: Int = 0
|
|
internal var internalVarConcrete: Int = 0
|
|
private var privateVarConcrete: Int = 0
|
|
|
|
public init<S>(t: T, u: U, v: V, _: S) {
|
|
publicVar = t
|
|
internalVar = u
|
|
privateVar = v
|
|
}
|
|
|
|
public func publicGeneric<A>(_: A) {}
|
|
internal func internalGeneric<A>(_: A) {}
|
|
private func privateGeneric<A>(_: A) {}
|
|
|
|
public static func publicStaticGeneric<A>(_: A) {}
|
|
internal static func internalStaticGeneric<A>(_: A) {}
|
|
private static func privateStaticGeneric<A>(_: A) {}
|
|
}
|
|
|
|
|
|
internal struct StructInternalNothing {}
|
|
|
|
internal struct StructInternalInit {
|
|
internal init() {}
|
|
|
|
internal init(internal_: Int) {}
|
|
private init(private_: Int) {}
|
|
}
|
|
|
|
internal struct StructInternalMethods {
|
|
internal init() {}
|
|
internal func internalMethod() {}
|
|
private func privateMethod() {}
|
|
}
|
|
|
|
internal struct StructInternalProperties {
|
|
internal let internalLet: Int = 0
|
|
private let privateLet: Int = 0
|
|
|
|
internal var internalVar: Int = 0
|
|
private var privateVar: Int = 0
|
|
|
|
internal var internalVarGet: Int { return 0 }
|
|
private var privateVarGet: Int { return 0 }
|
|
|
|
internal var internalVarGetSet: Int {
|
|
get { return 0 }
|
|
set {}
|
|
}
|
|
private var privateVarGetSet: Int {
|
|
get { return 0 }
|
|
set {}
|
|
}
|
|
}
|
|
|
|
internal struct StructInternalSubscripts {
|
|
internal subscript(internalGet _: Int) -> Int { return 0 }
|
|
private subscript(privateGet _: Int) -> Int { return 0 }
|
|
|
|
internal subscript(internalGetSet _: Int) -> Int {
|
|
get {return 0 }
|
|
set {}
|
|
}
|
|
private subscript(privateGetSet _: Int) -> Int {
|
|
get {return 0 }
|
|
set {}
|
|
}
|
|
}
|
|
|
|
internal struct StructInternalStatics {
|
|
internal static func internalStaticFunc() {}
|
|
private static func privateStaticFunc() {}
|
|
|
|
internal static let internalLet: Int = 0
|
|
private static let privateLet: Int = 0
|
|
|
|
internal static var internalVar: Int = 0
|
|
private static var privateVar: Int = 0
|
|
|
|
internal static var internalVarGet: Int { return 0 }
|
|
private static var privateVarGet: Int { return 0 }
|
|
|
|
internal static var internalVarGetSet: Int {
|
|
get { return 0 }
|
|
set {}
|
|
}
|
|
private static var privateVarGetSet: Int {
|
|
get { return 0 }
|
|
set {}
|
|
}
|
|
}
|
|
|
|
internal struct StructInternalGeneric<T, U, V> {
|
|
internal var internalVar: U
|
|
private var privateVar: V
|
|
|
|
internal var internalVarConcrete: Int = 0
|
|
private var privateVarConcrete: Int = 0
|
|
|
|
internal init<S>(t: T, u: U, v: V, _: S) {
|
|
internalVar = u
|
|
privateVar = v
|
|
}
|
|
|
|
internal func internalGeneric<A>(_: A) {}
|
|
private func privateGeneric<A>(_: A) {}
|
|
|
|
internal static func internalStaticGeneric<A>(_: A) {}
|
|
private static func privateStaticGeneric<A>(_: A) {}
|
|
}
|
|
|
|
|
|
private struct StructPrivateNothing {}
|
|
|
|
private struct StructPrivateInit {
|
|
private init() {}
|
|
private init(private_: Int) {}
|
|
}
|
|
|
|
private struct StructPrivateMethods {
|
|
private init() {}
|
|
private func privateMethod() {}
|
|
}
|
|
|
|
private struct StructPrivateProperties {
|
|
private let privateLet: Int = 0
|
|
|
|
private var privateVar: Int = 0
|
|
|
|
private var privateVarGet: Int { return 0 }
|
|
|
|
private var privateVarGetSet: Int {
|
|
get { return 0 }
|
|
set {}
|
|
}
|
|
}
|
|
|
|
private struct StructPrivateSubscripts {
|
|
private subscript(privateGet _: Int) -> Int { return 0 }
|
|
|
|
private subscript(privateGetSet _: Int) -> Int {
|
|
get {return 0 }
|
|
set {}
|
|
}
|
|
}
|
|
|
|
private struct StructPrivateStatics {
|
|
private static func privateStaticFunc() {}
|
|
|
|
private static let privateLet: Int = 0
|
|
|
|
private static var privateVar: Int = 0
|
|
|
|
private static var privateVarGet: Int { return 0 }
|
|
|
|
private static var privateVarGetSet: Int {
|
|
get { return 0 }
|
|
set {}
|
|
}
|
|
}
|
|
|
|
private struct StructPrivateGeneric<T, U, V> {
|
|
private var privateVar: V
|
|
|
|
private var privateVarConcrete: Int = 0
|
|
|
|
private init<S>(t: T, u: U, v: V, _: S) {
|
|
privateVar = v
|
|
}
|
|
|
|
private func privateGeneric<A>(_: A) {}
|
|
|
|
private static func privateStaticGeneric<A>(_: A) {}
|
|
}
|
|
|
|
public struct StructDynamicMembers {
|
|
public dynamic init() {}
|
|
public dynamic init(x: Int) {
|
|
self.init()
|
|
}
|
|
public dynamic func dynamicMethod() {}
|
|
public dynamic static func dynamicStaticMethod() {}
|
|
}
|
|
|
|
extension StructDynamicMembers {
|
|
@_dynamicReplacement(for: init(x:))
|
|
public init(y: Int) {
|
|
self.init()
|
|
}
|
|
|
|
@_dynamicReplacement(for: dynamicMethod())
|
|
public func methodReplacement() {}
|
|
|
|
@_dynamicReplacement(for: dynamicStaticMethod())
|
|
public static func staticMethodReplacement() {}
|
|
}
|