mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
These tests were targeting 10.9 or 10.10, but the minimum deployment target now supported by Xcode is 10.13. Bump them up to match: test/Concurrency/Backdeploy/linking.swift test/Concurrency/Backdeploy/linking_maccatalyst.swift test/Runtime/stable-bit-backward-deployment.swift
22 lines
841 B
Swift
22 lines
841 B
Swift
// RUN: %empty-directory(%t)
|
|
// RUN: %target-build-swift -target %target-cpu-apple-macosx12 %s -o %t/linking_direct
|
|
// RUN: %target-build-swift -target %target-cpu-apple-macosx11 %s -o %t/linking_rpath
|
|
// RUN: %target-build-swift -target %target-cpu-apple-macosx10.13 %s -o %t/linking_rpath_old
|
|
|
|
// RUN: otool -L %t/linking_direct | %FileCheck -check-prefix CHECK-DIRECT %s
|
|
// RUN: otool -L %t/linking_rpath | %FileCheck -check-prefix CHECK-RPATH %s
|
|
// RUN: otool -L %t/linking_rpath_old | %FileCheck -check-prefix CHECK-RPATH %s
|
|
|
|
// REQUIRES: OS=macosx
|
|
|
|
// CHECK-DIRECT: /usr/lib/swift/libswift_Concurrency.dylib
|
|
// CHECK-RPATH: @rpath/libswift_Concurrency.dylib
|
|
|
|
@available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
|
|
public struct X {
|
|
public func f() async -> Int { return 0 }
|
|
public func g() async -> Int {
|
|
await f()
|
|
}
|
|
}
|