mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
Find all the usages of `--enable-experimental-feature` or `--enable-upcoming-feature` in the tests and replace some of the `REQUIRES: asserts` to use `REQUIRES: swift-feature-Foo` instead, which should correctly apply to depending on the asserts/noasserts mode of the toolchain for each feature. Remove some comments that talked about enabling asserts since they don't apply anymore (but I might had miss some). All this was done with an automated script, so some formatting weirdness might happen, but I hope I fixed most of those. There might be some tests that were `REQUIRES: asserts` that might run in `noasserts` toolchains now. This will normally be because their feature went from experimental to upcoming/base and the tests were not updated.
91 lines
3.1 KiB
Swift
91 lines
3.1 KiB
Swift
// RUN: %empty-directory(%t)
|
|
|
|
// RUN: %target-swift-ide-test(mock-sdk: %clang-importer-sdk) -print-module -print-interface -source-filename %s -module-to-print=ObjCConcurrency -function-definitions=false -enable-experimental-feature SendableCompletionHandlers > %t/ObjCConcurrency.printed.txt
|
|
// RUN: %FileCheck -input-file %t/ObjCConcurrency.printed.txt %s
|
|
// RUN: %FileCheck -check-prefix NEGATIVE -input-file %t/ObjCConcurrency.printed.txt %s
|
|
|
|
|
|
// REQUIRES: objc_interop
|
|
// REQUIRES: concurrency
|
|
// REQUIRES: swift_feature_SendableCompletionHandlers
|
|
import _Concurrency
|
|
|
|
// CHECK-LABEL: class SlowServer : NSObject, ServiceProvider {
|
|
|
|
// rdar://76685011: Make sure we don't print implicit @available in generated interfaces.
|
|
// CHECK-NOT: @available
|
|
// CHECK: func doSomethingSlow(_ operation: String, completionHandler handler: @escaping @Sendable (Int) -> Void)
|
|
// CHECK: func doSomethingSlow(_ operation: String) async -> Int
|
|
|
|
// NEGATIVE-NOT: @Sendable{{.+}}class
|
|
// NEGATIVE-NOT: @_nonSendable{{.+}}class
|
|
// NEGATIVE-NOT: @Sendable{{.+}}func
|
|
// NEGATIVE-NOT: @Sendable{{.+}}var
|
|
|
|
// CHECK-LABEL: class SendableClass :
|
|
// CHECK-SAME: @unchecked Sendable
|
|
|
|
// CHECK-LABEL: class NonSendableClass
|
|
// CHECK-NOT: @unchecked Sendable
|
|
// CHECK: @available(*, unavailable)
|
|
// CHECK-NEXT: extension NonSendableClass : @unchecked Sendable {
|
|
|
|
// CHECK-LABEL: class AuditedSendable :
|
|
// CHECK-SAME: @unchecked Sendable
|
|
|
|
// CHECK-LABEL: class AuditedNonSendable
|
|
// CHECK-NOT: @unchecked Sendable
|
|
// CHECK: @available(*, unavailable)
|
|
// CHECK-NEXT: extension AuditedNonSendable : @unchecked Sendable {
|
|
|
|
// CHECK-LABEL: class AuditedBoth
|
|
// CHECK-NOT: @unchecked Sendable
|
|
// CHECK: @available(*, unavailable)
|
|
// CHECK-NEXT: extension AuditedBoth : @unchecked Sendable {
|
|
|
|
// CHECK-LABEL: public protocol SendableProtocol
|
|
// CHECK-SAME: : Sendable
|
|
|
|
// CHECK-LABEL: enum SendableEnum :
|
|
// CHECK-SAME: @unchecked Sendable
|
|
|
|
// CHECK-LABEL: enum NonSendableEnum :
|
|
// CHECK-NOT: @unchecked Sendable
|
|
// CHECK: @available(*, unavailable)
|
|
// CHECK-NEXT: extension NonSendableEnum : @unchecked Sendable {
|
|
|
|
// CHECK-LABEL: struct SendableOptions :
|
|
// CHECK-SAME: @unchecked Sendable
|
|
|
|
// CHECK-LABEL: struct NonSendableOptions :
|
|
// CHECK-NOT: @unchecked Sendable
|
|
// CHECK: @available(*, unavailable)
|
|
// CHECK-NEXT: extension NonSendableOptions : @unchecked Sendable {
|
|
|
|
// CHECK-LABEL: public struct SendableError :
|
|
// CHECK-NOT: @unchecked Sendable
|
|
// CHECK: public enum Code :
|
|
// CHECK-SAME: @unchecked Sendable
|
|
|
|
// CHECK-LABEL: public struct NonSendableError :
|
|
// CHECK-NOT: @unchecked Sendable
|
|
// CHECK: public enum Code :
|
|
// CHECK-SAME: @unchecked Sendable
|
|
|
|
// CHECK-LABEL: struct SendableStringEnum :
|
|
// CHECK-SAME: @unchecked Sendable
|
|
|
|
// CHECK-LABEL: struct NonSendableStringEnum :
|
|
// CHECK-NOT: @unchecked Sendable
|
|
// CHECK: @available(*, unavailable)
|
|
// CHECK-NEXT: extension NonSendableStringEnum : @unchecked Sendable {
|
|
|
|
// CHECK-LABEL: struct SendableStringStruct :
|
|
// CHECK-SAME: @unchecked Sendable
|
|
|
|
// CHECK-LABEL: struct NonSendableStringStruct :
|
|
// CHECK-NOT: @unchecked Sendable
|
|
// CHECK: @available(*, unavailable)
|
|
// CHECK-NEXT: extension NonSendableStringStruct : @unchecked Sendable {
|
|
|