diff --git a/test/AutoDiff/stdlib/simd.swift b/test/AutoDiff/stdlib/simd.swift index 1eec61a72de..581a1e15da1 100644 --- a/test/AutoDiff/stdlib/simd.swift +++ b/test/AutoDiff/stdlib/simd.swift @@ -3,6 +3,7 @@ // Would fail due to unavailability of swift_autoDiffCreateLinearMapContext. // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime import _Differentiation import StdlibUnittest diff --git a/test/AutoDiff/validation-test/address_only_tangentvector.swift b/test/AutoDiff/validation-test/address_only_tangentvector.swift index 0568bf0e617..9c703b16a96 100644 --- a/test/AutoDiff/validation-test/address_only_tangentvector.swift +++ b/test/AutoDiff/validation-test/address_only_tangentvector.swift @@ -3,6 +3,7 @@ // Would fail due to unavailability of swift_autoDiffCreateLinearMapContext. // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime import StdlibUnittest import DifferentiationUnittest diff --git a/test/AutoDiff/validation-test/array.swift b/test/AutoDiff/validation-test/array.swift index d6d9b10b17d..4ad770f31a1 100644 --- a/test/AutoDiff/validation-test/array.swift +++ b/test/AutoDiff/validation-test/array.swift @@ -3,6 +3,7 @@ // Would fail due to unavailability of swift_autoDiffCreateLinearMapContext. // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime import StdlibUnittest import _Differentiation diff --git a/test/AutoDiff/validation-test/inout_parameters.swift b/test/AutoDiff/validation-test/inout_parameters.swift index 0fbf7a42930..687182bed6b 100644 --- a/test/AutoDiff/validation-test/inout_parameters.swift +++ b/test/AutoDiff/validation-test/inout_parameters.swift @@ -3,6 +3,7 @@ // Would fail due to unavailability of swift_autoDiffCreateLinearMapContext. // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime // `inout` parameter differentiation tests. diff --git a/test/Casting/Casts.swift b/test/Casting/Casts.swift index 54dd5dc91af..3955dec759e 100644 --- a/test/Casting/Casts.swift +++ b/test/Casting/Casts.swift @@ -26,6 +26,7 @@ // REQUIRES: executable_test // REQUIRES: concurrency // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime import StdlibUnittest #if _runtime(_ObjC) diff --git a/test/Concurrency/Runtime/actor_counters.swift b/test/Concurrency/Runtime/actor_counters.swift index 00a9d61a31f..53294816bd9 100644 --- a/test/Concurrency/Runtime/actor_counters.swift +++ b/test/Concurrency/Runtime/actor_counters.swift @@ -6,6 +6,7 @@ // rdar://76038845 // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime @available(macOS 9999, iOS 9999, watchOS 9999, tvOS 9999, *) actor Counter { diff --git a/test/Concurrency/Runtime/actor_keypaths.swift b/test/Concurrency/Runtime/actor_keypaths.swift index aac2c8af3ca..8632284ebc4 100644 --- a/test/Concurrency/Runtime/actor_keypaths.swift +++ b/test/Concurrency/Runtime/actor_keypaths.swift @@ -4,6 +4,7 @@ // REQUIRES: concurrency // REQUIRES: libdispatch // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime actor Page { let initialNumWords : Int diff --git a/test/Concurrency/Runtime/async_let_fibonacci.swift b/test/Concurrency/Runtime/async_let_fibonacci.swift index 61bca17d834..f4d7fe352c5 100644 --- a/test/Concurrency/Runtime/async_let_fibonacci.swift +++ b/test/Concurrency/Runtime/async_let_fibonacci.swift @@ -6,6 +6,7 @@ // rdar://76038845 // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime func fib(_ n: Int) -> Int { var first = 0 diff --git a/test/Concurrency/Runtime/async_properties_actor.swift b/test/Concurrency/Runtime/async_properties_actor.swift index b7f1bab55f9..11405aa9d00 100644 --- a/test/Concurrency/Runtime/async_properties_actor.swift +++ b/test/Concurrency/Runtime/async_properties_actor.swift @@ -6,6 +6,7 @@ // rdar://76038845 // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime @propertyWrapper struct SuccessTracker { diff --git a/test/Concurrency/Runtime/async_task_cancellation_early.swift b/test/Concurrency/Runtime/async_task_cancellation_early.swift index e82295e6cc6..0b453ed3ac8 100644 --- a/test/Concurrency/Runtime/async_task_cancellation_early.swift +++ b/test/Concurrency/Runtime/async_task_cancellation_early.swift @@ -6,6 +6,7 @@ // rdar://76038845 // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime import Dispatch diff --git a/test/Concurrency/Runtime/async_task_cancellation_while_running.swift b/test/Concurrency/Runtime/async_task_cancellation_while_running.swift index 594b333767a..60d4955420d 100644 --- a/test/Concurrency/Runtime/async_task_cancellation_while_running.swift +++ b/test/Concurrency/Runtime/async_task_cancellation_while_running.swift @@ -6,6 +6,7 @@ // rdar://76038845 // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime import Dispatch diff --git a/test/Concurrency/Runtime/async_task_detach.swift b/test/Concurrency/Runtime/async_task_detach.swift index 5dbd4846bd9..1a9b8198494 100644 --- a/test/Concurrency/Runtime/async_task_detach.swift +++ b/test/Concurrency/Runtime/async_task_detach.swift @@ -5,6 +5,7 @@ // rdar://76038845 // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime // https://bugs.swift.org/browse/SR-14333 // UNSUPPORTED: OS=windows-msvc diff --git a/test/Concurrency/Runtime/async_task_equals_hashCode.swift b/test/Concurrency/Runtime/async_task_equals_hashCode.swift index c61ee48477e..b5ad90e9fe6 100644 --- a/test/Concurrency/Runtime/async_task_equals_hashCode.swift +++ b/test/Concurrency/Runtime/async_task_equals_hashCode.swift @@ -5,6 +5,7 @@ // rdar://76038845 // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime // UNSUPPORTED: OS=windows-msvc diff --git a/test/Concurrency/Runtime/async_task_handle_cancellation.swift b/test/Concurrency/Runtime/async_task_handle_cancellation.swift index febcbf9dc11..36e540204e7 100644 --- a/test/Concurrency/Runtime/async_task_handle_cancellation.swift +++ b/test/Concurrency/Runtime/async_task_handle_cancellation.swift @@ -5,6 +5,7 @@ // rdar://76038845 // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime // This test is flaky on VS2017 (unknown reasons) // UNSUPPORTED: MSVC_VER=15.0 diff --git a/test/Concurrency/Runtime/async_task_locals_async_let.swift b/test/Concurrency/Runtime/async_task_locals_async_let.swift index 748424ac285..d8b5f18f5c8 100644 --- a/test/Concurrency/Runtime/async_task_locals_async_let.swift +++ b/test/Concurrency/Runtime/async_task_locals_async_let.swift @@ -6,6 +6,7 @@ // rdar://76038845 // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime class StringLike: CustomStringConvertible { let value: String diff --git a/test/Concurrency/Runtime/async_task_locals_basic.swift b/test/Concurrency/Runtime/async_task_locals_basic.swift index a337eade2e1..b777504d240 100644 --- a/test/Concurrency/Runtime/async_task_locals_basic.swift +++ b/test/Concurrency/Runtime/async_task_locals_basic.swift @@ -6,6 +6,7 @@ // rdar://76038845 // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime class StringLike: CustomStringConvertible { let value: String diff --git a/test/Concurrency/Runtime/async_task_locals_groups.swift b/test/Concurrency/Runtime/async_task_locals_groups.swift index eb28466984e..3f1c38a8125 100644 --- a/test/Concurrency/Runtime/async_task_locals_groups.swift +++ b/test/Concurrency/Runtime/async_task_locals_groups.swift @@ -6,6 +6,7 @@ // rdar://76038845 // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime class StringLike: CustomStringConvertible { let value: String diff --git a/test/Concurrency/Runtime/async_task_locals_inherit_never.swift b/test/Concurrency/Runtime/async_task_locals_inherit_never.swift index cfe10c42b33..fb8616aa04c 100644 --- a/test/Concurrency/Runtime/async_task_locals_inherit_never.swift +++ b/test/Concurrency/Runtime/async_task_locals_inherit_never.swift @@ -6,6 +6,7 @@ // rdar://76038845 // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime @available(macOS 9999, iOS 9999, watchOS 9999, tvOS 9999, *) class StringLike: CustomStringConvertible { diff --git a/test/Concurrency/Runtime/async_task_priority_current.swift b/test/Concurrency/Runtime/async_task_priority_current.swift index bca972a77cd..1fc62227845 100644 --- a/test/Concurrency/Runtime/async_task_priority_current.swift +++ b/test/Concurrency/Runtime/async_task_priority_current.swift @@ -6,6 +6,7 @@ // rdar://76038845 // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime import Dispatch diff --git a/test/Concurrency/Runtime/async_task_sleep.swift b/test/Concurrency/Runtime/async_task_sleep.swift index cd3dabbc316..5d8204405c5 100644 --- a/test/Concurrency/Runtime/async_task_sleep.swift +++ b/test/Concurrency/Runtime/async_task_sleep.swift @@ -5,6 +5,7 @@ // rdar://76038845 // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime import _Concurrency // FIXME: should not depend on Dispatch diff --git a/test/Concurrency/Runtime/async_taskgroup_asynciterator_semantics.swift b/test/Concurrency/Runtime/async_taskgroup_asynciterator_semantics.swift index 0e77a6a7f75..d87ecc57632 100644 --- a/test/Concurrency/Runtime/async_taskgroup_asynciterator_semantics.swift +++ b/test/Concurrency/Runtime/async_taskgroup_asynciterator_semantics.swift @@ -2,6 +2,7 @@ // REQUIRES: executable_test // REQUIRES: concurrency // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime // UNSUPPORTED: linux // XFAIL: windows diff --git a/test/Concurrency/Runtime/async_taskgroup_cancelAll_only_specific_group.swift b/test/Concurrency/Runtime/async_taskgroup_cancelAll_only_specific_group.swift index 2c5d42a1ab3..c4af0d251cd 100644 --- a/test/Concurrency/Runtime/async_taskgroup_cancelAll_only_specific_group.swift +++ b/test/Concurrency/Runtime/async_taskgroup_cancelAll_only_specific_group.swift @@ -6,6 +6,7 @@ // rdar://76038845 // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime import Dispatch diff --git a/test/Concurrency/Runtime/async_taskgroup_cancel_from_inside_child.swift b/test/Concurrency/Runtime/async_taskgroup_cancel_from_inside_child.swift index 0301a6f9c91..f1257a920fd 100644 --- a/test/Concurrency/Runtime/async_taskgroup_cancel_from_inside_child.swift +++ b/test/Concurrency/Runtime/async_taskgroup_cancel_from_inside_child.swift @@ -6,6 +6,7 @@ // rdar://76038845 // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime import Dispatch diff --git a/test/Concurrency/Runtime/async_taskgroup_cancel_parent_affects_group.swift b/test/Concurrency/Runtime/async_taskgroup_cancel_parent_affects_group.swift index 8ab6c2af880..c3d2f168876 100644 --- a/test/Concurrency/Runtime/async_taskgroup_cancel_parent_affects_group.swift +++ b/test/Concurrency/Runtime/async_taskgroup_cancel_parent_affects_group.swift @@ -6,6 +6,7 @@ // rdar://76038845 // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime import Dispatch diff --git a/test/Concurrency/Runtime/async_taskgroup_cancel_then_completions.swift b/test/Concurrency/Runtime/async_taskgroup_cancel_then_completions.swift index fce984f50a6..66e302b96e3 100644 --- a/test/Concurrency/Runtime/async_taskgroup_cancel_then_completions.swift +++ b/test/Concurrency/Runtime/async_taskgroup_cancel_then_completions.swift @@ -6,6 +6,7 @@ // rdar://76038845 // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime import Dispatch diff --git a/test/Concurrency/Runtime/async_taskgroup_cancel_then_spawn.swift b/test/Concurrency/Runtime/async_taskgroup_cancel_then_spawn.swift index a4eefce0375..c6fae83b6c3 100644 --- a/test/Concurrency/Runtime/async_taskgroup_cancel_then_spawn.swift +++ b/test/Concurrency/Runtime/async_taskgroup_cancel_then_spawn.swift @@ -6,6 +6,7 @@ // rdar://76038845 // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime import Dispatch diff --git a/test/Concurrency/Runtime/async_taskgroup_is_asyncsequence.swift b/test/Concurrency/Runtime/async_taskgroup_is_asyncsequence.swift index 8c5fc22090c..cd28a77e89f 100644 --- a/test/Concurrency/Runtime/async_taskgroup_is_asyncsequence.swift +++ b/test/Concurrency/Runtime/async_taskgroup_is_asyncsequence.swift @@ -5,6 +5,7 @@ // rdar://76038845 // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime // UNSUPPORTED: linux // XFAIL: windows diff --git a/test/Concurrency/Runtime/async_taskgroup_is_empty.swift b/test/Concurrency/Runtime/async_taskgroup_is_empty.swift index 017b81656b3..b189c124622 100644 --- a/test/Concurrency/Runtime/async_taskgroup_is_empty.swift +++ b/test/Concurrency/Runtime/async_taskgroup_is_empty.swift @@ -6,6 +6,7 @@ // rdar://76038845 // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime import Dispatch diff --git a/test/Concurrency/Runtime/async_taskgroup_next_not_invoked_cancelAll.swift b/test/Concurrency/Runtime/async_taskgroup_next_not_invoked_cancelAll.swift index 84e50d60ea0..48236febade 100644 --- a/test/Concurrency/Runtime/async_taskgroup_next_not_invoked_cancelAll.swift +++ b/test/Concurrency/Runtime/async_taskgroup_next_not_invoked_cancelAll.swift @@ -6,6 +6,7 @@ // rdar://76038845 // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime import Dispatch diff --git a/test/Concurrency/Runtime/async_taskgroup_next_not_invoked_without_cancelAll.swift b/test/Concurrency/Runtime/async_taskgroup_next_not_invoked_without_cancelAll.swift index 9ac9e715419..b5512cd496c 100644 --- a/test/Concurrency/Runtime/async_taskgroup_next_not_invoked_without_cancelAll.swift +++ b/test/Concurrency/Runtime/async_taskgroup_next_not_invoked_without_cancelAll.swift @@ -6,6 +6,7 @@ // rdar://76038845 // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime import Dispatch diff --git a/test/Concurrency/Runtime/async_taskgroup_next_on_completed.swift b/test/Concurrency/Runtime/async_taskgroup_next_on_completed.swift index e5bb50364b8..eeed8c84d3a 100644 --- a/test/Concurrency/Runtime/async_taskgroup_next_on_completed.swift +++ b/test/Concurrency/Runtime/async_taskgroup_next_on_completed.swift @@ -6,6 +6,7 @@ // rdar://76038845 // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime import Dispatch diff --git a/test/Concurrency/Runtime/async_taskgroup_throw_recover.swift b/test/Concurrency/Runtime/async_taskgroup_throw_recover.swift index 4afcfaf31c4..6adf2294a6f 100644 --- a/test/Concurrency/Runtime/async_taskgroup_throw_recover.swift +++ b/test/Concurrency/Runtime/async_taskgroup_throw_recover.swift @@ -5,6 +5,7 @@ // rdar://76038845 // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime // UNSUPPORTED: OS=windows-msvc diff --git a/test/Concurrency/Runtime/async_taskgroup_throw_rethrow.swift b/test/Concurrency/Runtime/async_taskgroup_throw_rethrow.swift index 2058dd534d0..e9b85628746 100644 --- a/test/Concurrency/Runtime/async_taskgroup_throw_rethrow.swift +++ b/test/Concurrency/Runtime/async_taskgroup_throw_rethrow.swift @@ -5,6 +5,7 @@ // rdar://76038845 // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime // XFAIL: OS=windows-msvc diff --git a/test/Concurrency/Runtime/basic_future.swift b/test/Concurrency/Runtime/basic_future.swift index 008e15775a5..1a8937ea8e9 100644 --- a/test/Concurrency/Runtime/basic_future.swift +++ b/test/Concurrency/Runtime/basic_future.swift @@ -6,6 +6,7 @@ // rdar://76038845 // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime import Dispatch diff --git a/test/Concurrency/Runtime/cancellation_handler.swift b/test/Concurrency/Runtime/cancellation_handler.swift index 67653617533..070461e0248 100644 --- a/test/Concurrency/Runtime/cancellation_handler.swift +++ b/test/Concurrency/Runtime/cancellation_handler.swift @@ -4,6 +4,7 @@ // rdar://76038845 // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime // UNSUPPORTED: OS=windows-msvc // for sleep diff --git a/test/Concurrency/Runtime/checked_continuation.swift b/test/Concurrency/Runtime/checked_continuation.swift index 324d6af01d1..7058ceadbb8 100644 --- a/test/Concurrency/Runtime/checked_continuation.swift +++ b/test/Concurrency/Runtime/checked_continuation.swift @@ -3,6 +3,7 @@ // REQUIRES: executable_test // REQUIRES: concurrency // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime import _Concurrency import StdlibUnittest diff --git a/test/Concurrency/Runtime/class_resilience.swift b/test/Concurrency/Runtime/class_resilience.swift index 46e7ec2b0d0..797be927ec0 100644 --- a/test/Concurrency/Runtime/class_resilience.swift +++ b/test/Concurrency/Runtime/class_resilience.swift @@ -13,6 +13,7 @@ // rdar://76038845 // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime // XFAIL: windows // XFAIL: linux diff --git a/test/Concurrency/Runtime/effectful_properties.swift b/test/Concurrency/Runtime/effectful_properties.swift index 7c7c6c82b51..f5adcdd55b8 100644 --- a/test/Concurrency/Runtime/effectful_properties.swift +++ b/test/Concurrency/Runtime/effectful_properties.swift @@ -6,6 +6,7 @@ // rdar://76038845 // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime enum GeneralError : Error { case UnknownBallKind diff --git a/test/Concurrency/Runtime/executor_deinit1.swift b/test/Concurrency/Runtime/executor_deinit1.swift index dd88e95de40..935b62d3e0b 100644 --- a/test/Concurrency/Runtime/executor_deinit1.swift +++ b/test/Concurrency/Runtime/executor_deinit1.swift @@ -4,6 +4,7 @@ // REQUIRES: concurrency // REQUIRES: libdispatch // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime // https://bugs.swift.org/browse/SR-14461 // UNSUPPORTED: linux diff --git a/test/Concurrency/Runtime/executor_deinit2.swift b/test/Concurrency/Runtime/executor_deinit2.swift index e2ef3170dca..7da9fe67809 100644 --- a/test/Concurrency/Runtime/executor_deinit2.swift +++ b/test/Concurrency/Runtime/executor_deinit2.swift @@ -6,6 +6,7 @@ // rdar://76038845 // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime // this needs to match with the check count below. let NUM_TASKS : Int = 100 diff --git a/test/Concurrency/Runtime/executor_deinit3.swift b/test/Concurrency/Runtime/executor_deinit3.swift index 7ea27e98092..ab51198b278 100644 --- a/test/Concurrency/Runtime/executor_deinit3.swift +++ b/test/Concurrency/Runtime/executor_deinit3.swift @@ -6,6 +6,7 @@ // rdar://76038845 // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime // for sleep #if canImport(Darwin) diff --git a/test/Concurrency/Runtime/future_fibonacci.swift b/test/Concurrency/Runtime/future_fibonacci.swift index 4c3dacfecb6..c19d1046f2a 100644 --- a/test/Concurrency/Runtime/future_fibonacci.swift +++ b/test/Concurrency/Runtime/future_fibonacci.swift @@ -6,6 +6,7 @@ // rdar://76038845 // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime import Dispatch diff --git a/test/Concurrency/Runtime/mainactor.swift b/test/Concurrency/Runtime/mainactor.swift index d207b7ee82e..683554d8f63 100644 --- a/test/Concurrency/Runtime/mainactor.swift +++ b/test/Concurrency/Runtime/mainactor.swift @@ -6,6 +6,7 @@ // rdar://76038845 // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime import Dispatch diff --git a/test/Concurrency/Runtime/objc_async.swift b/test/Concurrency/Runtime/objc_async.swift index cddf89eb6ec..838cedfd4fa 100644 --- a/test/Concurrency/Runtime/objc_async.swift +++ b/test/Concurrency/Runtime/objc_async.swift @@ -9,6 +9,7 @@ // rdar://76038845 // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime func buttTest() async { let butt = Butt() diff --git a/test/Concurrency/Runtime/protocol_resilience.swift b/test/Concurrency/Runtime/protocol_resilience.swift index 818acba9127..f4edc800a46 100644 --- a/test/Concurrency/Runtime/protocol_resilience.swift +++ b/test/Concurrency/Runtime/protocol_resilience.swift @@ -13,6 +13,7 @@ // rdar://76038845 // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime // XFAIL: windows // UNSUPPORTED: linux diff --git a/test/Concurrency/Runtime/yielding_continuation.swift b/test/Concurrency/Runtime/yielding_continuation.swift index 46565d17ccf..1bd4cd6a213 100644 --- a/test/Concurrency/Runtime/yielding_continuation.swift +++ b/test/Concurrency/Runtime/yielding_continuation.swift @@ -3,6 +3,7 @@ // REQUIRES: executable_test // REQUIRES: concurrency // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime // https://bugs.swift.org/browse/SR-14466 // UNSUPPORTED: OS=windows-msvc diff --git a/test/Concurrency/async_main.swift b/test/Concurrency/async_main.swift index 5a49e914784..1180e7540f2 100644 --- a/test/Concurrency/async_main.swift +++ b/test/Concurrency/async_main.swift @@ -8,6 +8,7 @@ // rdar://76038845 // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime func asyncFunc() async { print("Hello World!") diff --git a/test/Concurrency/async_main_throws_prints_error.swift b/test/Concurrency/async_main_throws_prints_error.swift index ab74c1a6250..cbd033edbd2 100644 --- a/test/Concurrency/async_main_throws_prints_error.swift +++ b/test/Concurrency/async_main_throws_prints_error.swift @@ -10,6 +10,7 @@ // rdar://76038845 // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime enum Err : Error { case noGood } diff --git a/test/IRGen/async/run-call-class-witnessmethod-void-to-void.swift b/test/IRGen/async/run-call-class-witnessmethod-void-to-void.swift index b5337cf8dbb..4c3e66ed20c 100644 --- a/test/IRGen/async/run-call-class-witnessmethod-void-to-void.swift +++ b/test/IRGen/async/run-call-class-witnessmethod-void-to-void.swift @@ -8,6 +8,7 @@ // REQUIRES: swift_test_mode_optimize_none // REQUIRES: concurrency // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime import _Concurrency diff --git a/test/IRGen/async/run-call-classinstance-int64-to-void.sil b/test/IRGen/async/run-call-classinstance-int64-to-void.sil index 3f2e104e189..125ac6139d9 100644 --- a/test/IRGen/async/run-call-classinstance-int64-to-void.sil +++ b/test/IRGen/async/run-call-classinstance-int64-to-void.sil @@ -10,6 +10,7 @@ // REQUIRES: swift_test_mode_optimize_none // REQUIRES: concurrency // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime import Builtin diff --git a/test/IRGen/async/run-call-classinstance-void-to-void.sil b/test/IRGen/async/run-call-classinstance-void-to-void.sil index 1339fe47f10..8c9112edb20 100644 --- a/test/IRGen/async/run-call-classinstance-void-to-void.sil +++ b/test/IRGen/async/run-call-classinstance-void-to-void.sil @@ -10,6 +10,7 @@ // REQUIRES: swift_test_mode_optimize_none // REQUIRES: concurrency // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime import Builtin diff --git a/test/IRGen/async/run-call-dynamic-void_to_void.swift b/test/IRGen/async/run-call-dynamic-void_to_void.swift index 49885eb582c..70a20b83af6 100644 --- a/test/IRGen/async/run-call-dynamic-void_to_void.swift +++ b/test/IRGen/async/run-call-dynamic-void_to_void.swift @@ -8,6 +8,7 @@ // REQUIRES: swift_test_mode_optimize_none // REQUIRES: concurrency // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime // Windows does not do swiftailcc // XFAIL: OS=windows-msvc diff --git a/test/IRGen/async/run-call-existential-to-void.sil b/test/IRGen/async/run-call-existential-to-void.sil index ea01bc12c94..6710fc6f126 100644 --- a/test/IRGen/async/run-call-existential-to-void.sil +++ b/test/IRGen/async/run-call-existential-to-void.sil @@ -10,6 +10,7 @@ // REQUIRES: swift_test_mode_optimize_none // REQUIRES: concurrency // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime import Builtin diff --git a/test/IRGen/async/run-call-generic-to-generic.sil b/test/IRGen/async/run-call-generic-to-generic.sil index a4c90ca22b0..24e713583fd 100644 --- a/test/IRGen/async/run-call-generic-to-generic.sil +++ b/test/IRGen/async/run-call-generic-to-generic.sil @@ -10,6 +10,7 @@ // REQUIRES: swift_test_mode_optimize_none // REQUIRES: concurrency // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime import Builtin diff --git a/test/IRGen/async/run-call-generic-to-void.swift b/test/IRGen/async/run-call-generic-to-void.swift index ccdfca4802e..26327cea000 100644 --- a/test/IRGen/async/run-call-generic-to-void.swift +++ b/test/IRGen/async/run-call-generic-to-void.swift @@ -8,6 +8,7 @@ // REQUIRES: swift_test_mode_optimize_none // REQUIRES: concurrency // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime import _Concurrency diff --git a/test/IRGen/async/run-call-genericEquatable-x2-to-bool.sil b/test/IRGen/async/run-call-genericEquatable-x2-to-bool.sil index 4b953681e6f..d6961b155ae 100644 --- a/test/IRGen/async/run-call-genericEquatable-x2-to-bool.sil +++ b/test/IRGen/async/run-call-genericEquatable-x2-to-bool.sil @@ -10,6 +10,7 @@ // REQUIRES: swift_test_mode_optimize_none // REQUIRES: concurrency // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime import Builtin diff --git a/test/IRGen/async/run-call-int64-and-int64-to-void.sil b/test/IRGen/async/run-call-int64-and-int64-to-void.sil index 686213b1eaa..4250a80792b 100644 --- a/test/IRGen/async/run-call-int64-and-int64-to-void.sil +++ b/test/IRGen/async/run-call-int64-and-int64-to-void.sil @@ -10,6 +10,7 @@ // REQUIRES: swift_test_mode_optimize_none // REQUIRES: concurrency // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime import Builtin diff --git a/test/IRGen/async/run-call-int64-to-void.sil b/test/IRGen/async/run-call-int64-to-void.sil index 4840b66d26f..cf20c9c8c1d 100644 --- a/test/IRGen/async/run-call-int64-to-void.sil +++ b/test/IRGen/async/run-call-int64-to-void.sil @@ -10,6 +10,7 @@ // REQUIRES: swift_test_mode_optimize_none // REQUIRES: concurrency // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime import Builtin diff --git a/test/IRGen/async/run-call-nonresilient-classinstance-void-to-void.swift b/test/IRGen/async/run-call-nonresilient-classinstance-void-to-void.swift index 19481f27f7d..131eaa269b6 100644 --- a/test/IRGen/async/run-call-nonresilient-classinstance-void-to-void.swift +++ b/test/IRGen/async/run-call-nonresilient-classinstance-void-to-void.swift @@ -10,6 +10,7 @@ // REQUIRES: swift_test_mode_optimize_none // REQUIRES: concurrency // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime // XFAIL: windows import _Concurrency diff --git a/test/IRGen/async/run-call-protocolextension_instance-void-to-int64.sil b/test/IRGen/async/run-call-protocolextension_instance-void-to-int64.sil index b63c1f0bd76..ab6214205af 100644 --- a/test/IRGen/async/run-call-protocolextension_instance-void-to-int64.sil +++ b/test/IRGen/async/run-call-protocolextension_instance-void-to-int64.sil @@ -10,6 +10,7 @@ // REQUIRES: swift_test_mode_optimize_none // REQUIRES: concurrency // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime import Builtin import Swift diff --git a/test/IRGen/async/run-call-protocolwitness_instance-void-to-int64.sil b/test/IRGen/async/run-call-protocolwitness_instance-void-to-int64.sil index 956247624d2..2c93799ca1e 100644 --- a/test/IRGen/async/run-call-protocolwitness_instance-void-to-int64.sil +++ b/test/IRGen/async/run-call-protocolwitness_instance-void-to-int64.sil @@ -10,6 +10,7 @@ // REQUIRES: swift_test_mode_optimize_none // REQUIRES: concurrency // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime import Builtin import Swift diff --git a/test/IRGen/async/run-call-resilient-classinstance-void-to-void.sil b/test/IRGen/async/run-call-resilient-classinstance-void-to-void.sil index e46dbd75a24..0acd3581046 100644 --- a/test/IRGen/async/run-call-resilient-classinstance-void-to-void.sil +++ b/test/IRGen/async/run-call-resilient-classinstance-void-to-void.sil @@ -12,6 +12,7 @@ // REQUIRES: swift_test_mode_optimize_none // REQUIRES: concurrency // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime import Builtin diff --git a/test/IRGen/async/run-call-resilient-protocolinstance-void-to-void.swift b/test/IRGen/async/run-call-resilient-protocolinstance-void-to-void.swift index 74ff7818b16..8194c8bc2b6 100644 --- a/test/IRGen/async/run-call-resilient-protocolinstance-void-to-void.swift +++ b/test/IRGen/async/run-call-resilient-protocolinstance-void-to-void.swift @@ -12,6 +12,7 @@ // REQUIRES: swift_test_mode_optimize_none // REQUIRES: concurrency // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime import _Concurrency import ResilientProtocol diff --git a/test/IRGen/async/run-call-struct-instance_generic-mutating-generic_1-to-generic_1.swift b/test/IRGen/async/run-call-struct-instance_generic-mutating-generic_1-to-generic_1.swift index cb79b40f9b1..5e6c41e5d3b 100644 --- a/test/IRGen/async/run-call-struct-instance_generic-mutating-generic_1-to-generic_1.swift +++ b/test/IRGen/async/run-call-struct-instance_generic-mutating-generic_1-to-generic_1.swift @@ -8,6 +8,7 @@ // REQUIRES: swift_test_mode_optimize_none // REQUIRES: concurrency // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime import _Concurrency diff --git a/test/IRGen/async/run-call-struct_five_bools-to-void.sil b/test/IRGen/async/run-call-struct_five_bools-to-void.sil index fdd666af8bc..27032657603 100644 --- a/test/IRGen/async/run-call-struct_five_bools-to-void.sil +++ b/test/IRGen/async/run-call-struct_five_bools-to-void.sil @@ -10,6 +10,7 @@ // REQUIRES: swift_test_mode_optimize_none // REQUIRES: concurrency // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime import Builtin diff --git a/test/IRGen/async/run-call-structinstance-int64-to-void.sil b/test/IRGen/async/run-call-structinstance-int64-to-void.sil index 1c5ef688695..816cb7fcbf9 100644 --- a/test/IRGen/async/run-call-structinstance-int64-to-void.sil +++ b/test/IRGen/async/run-call-structinstance-int64-to-void.sil @@ -10,6 +10,7 @@ // REQUIRES: swift_test_mode_optimize_none // REQUIRES: concurrency // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime import Builtin import Swift diff --git a/test/IRGen/async/run-call-void-throws-to-int-throwing.sil b/test/IRGen/async/run-call-void-throws-to-int-throwing.sil index d51edc5a98d..9a8727be7f8 100644 --- a/test/IRGen/async/run-call-void-throws-to-int-throwing.sil +++ b/test/IRGen/async/run-call-void-throws-to-int-throwing.sil @@ -10,6 +10,7 @@ // REQUIRES: swift_test_mode_optimize_none // REQUIRES: concurrency // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime import Builtin diff --git a/test/IRGen/async/run-call-void-throws-to-int-throwing_call-async-nothrow_call-sync-throw.sil b/test/IRGen/async/run-call-void-throws-to-int-throwing_call-async-nothrow_call-sync-throw.sil index d2c486451b3..bb1e4cc950d 100644 --- a/test/IRGen/async/run-call-void-throws-to-int-throwing_call-async-nothrow_call-sync-throw.sil +++ b/test/IRGen/async/run-call-void-throws-to-int-throwing_call-async-nothrow_call-sync-throw.sil @@ -10,6 +10,7 @@ // REQUIRES: swift_test_mode_optimize_none // REQUIRES: concurrency // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime import Builtin import Swift diff --git a/test/IRGen/async/run-call-void-throws-to-int-throwing_call-async-throw.sil b/test/IRGen/async/run-call-void-throws-to-int-throwing_call-async-throw.sil index 688ddcc6d09..bb77126150f 100644 --- a/test/IRGen/async/run-call-void-throws-to-int-throwing_call-async-throw.sil +++ b/test/IRGen/async/run-call-void-throws-to-int-throwing_call-async-throw.sil @@ -10,6 +10,7 @@ // REQUIRES: swift_test_mode_optimize_none // REQUIRES: concurrency // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime import Builtin diff --git a/test/IRGen/async/run-call-void-throws-to-int-throwing_call-sync-nothrow_call-async-throw.sil b/test/IRGen/async/run-call-void-throws-to-int-throwing_call-sync-nothrow_call-async-throw.sil index 9bc4d30e644..70f73da77ab 100644 --- a/test/IRGen/async/run-call-void-throws-to-int-throwing_call-sync-nothrow_call-async-throw.sil +++ b/test/IRGen/async/run-call-void-throws-to-int-throwing_call-sync-nothrow_call-async-throw.sil @@ -10,6 +10,7 @@ // REQUIRES: swift_test_mode_optimize_none // REQUIRES: concurrency // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime import Builtin diff --git a/test/IRGen/async/run-call-void-throws-to-int-throwing_call-sync-throw.sil b/test/IRGen/async/run-call-void-throws-to-int-throwing_call-sync-throw.sil index 0c03f05b446..bc49f2e42e7 100644 --- a/test/IRGen/async/run-call-void-throws-to-int-throwing_call-sync-throw.sil +++ b/test/IRGen/async/run-call-void-throws-to-int-throwing_call-sync-throw.sil @@ -10,6 +10,7 @@ // REQUIRES: swift_test_mode_optimize_none // REQUIRES: concurrency // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime import Builtin diff --git a/test/IRGen/async/run-call-void-to-existential.sil b/test/IRGen/async/run-call-void-to-existential.sil index 333cc04b583..545c03b5a33 100644 --- a/test/IRGen/async/run-call-void-to-existential.sil +++ b/test/IRGen/async/run-call-void-to-existential.sil @@ -10,6 +10,7 @@ // REQUIRES: swift_test_mode_optimize_none // REQUIRES: concurrency // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime import Builtin diff --git a/test/IRGen/async/run-call-void-to-int64-and-int64.sil b/test/IRGen/async/run-call-void-to-int64-and-int64.sil index 5e141f681db..d8a834ba001 100644 --- a/test/IRGen/async/run-call-void-to-int64-and-int64.sil +++ b/test/IRGen/async/run-call-void-to-int64-and-int64.sil @@ -10,6 +10,7 @@ // REQUIRES: swift_test_mode_optimize_none // REQUIRES: concurrency // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime import Builtin diff --git a/test/IRGen/async/run-call-void-to-int64.swift b/test/IRGen/async/run-call-void-to-int64.swift index 721cd72cffd..6852e410ed8 100644 --- a/test/IRGen/async/run-call-void-to-int64.swift +++ b/test/IRGen/async/run-call-void-to-int64.swift @@ -8,6 +8,7 @@ // REQUIRES: swift_test_mode_optimize_none // REQUIRES: concurrency // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime import Swift import _Concurrency diff --git a/test/IRGen/async/run-call-void-to-struct_large.sil b/test/IRGen/async/run-call-void-to-struct_large.sil index 97ae19facf8..52234b480fb 100644 --- a/test/IRGen/async/run-call-void-to-struct_large.sil +++ b/test/IRGen/async/run-call-void-to-struct_large.sil @@ -10,6 +10,7 @@ // REQUIRES: swift_test_mode_optimize_none // REQUIRES: concurrency // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime import Builtin import Swift diff --git a/test/IRGen/async/run-call_generic-protocolwitness_instance-generic-to-int64-and-generic.sil b/test/IRGen/async/run-call_generic-protocolwitness_instance-generic-to-int64-and-generic.sil index 1b02374170b..b26bf0691fc 100644 --- a/test/IRGen/async/run-call_generic-protocolwitness_instance-generic-to-int64-and-generic.sil +++ b/test/IRGen/async/run-call_generic-protocolwitness_instance-generic-to-int64-and-generic.sil @@ -10,6 +10,7 @@ // REQUIRES: swift_test_mode_optimize_none // REQUIRES: concurrency // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime import Builtin import Swift diff --git a/test/IRGen/async/run-call_generic-protocolwitness_instance-void-to-int64.sil b/test/IRGen/async/run-call_generic-protocolwitness_instance-void-to-int64.sil index 2a4334033b9..fb07920f09d 100644 --- a/test/IRGen/async/run-call_generic-protocolwitness_instance-void-to-int64.sil +++ b/test/IRGen/async/run-call_generic-protocolwitness_instance-void-to-int64.sil @@ -10,6 +10,7 @@ // REQUIRES: swift_test_mode_optimize_none // REQUIRES: concurrency // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime import Builtin import Swift diff --git a/test/IRGen/async/run-convertfunction-int64-to-void.sil b/test/IRGen/async/run-convertfunction-int64-to-void.sil index 5f504632098..682c26afee7 100644 --- a/test/IRGen/async/run-convertfunction-int64-to-void.sil +++ b/test/IRGen/async/run-convertfunction-int64-to-void.sil @@ -10,6 +10,7 @@ // REQUIRES: swift_test_mode_optimize_none // REQUIRES: concurrency // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime import Builtin import Swift diff --git a/test/IRGen/async/run-partialapply-capture-class-to-void.sil b/test/IRGen/async/run-partialapply-capture-class-to-void.sil index fd1d145b297..69c8d357e5b 100644 --- a/test/IRGen/async/run-partialapply-capture-class-to-void.sil +++ b/test/IRGen/async/run-partialapply-capture-class-to-void.sil @@ -10,6 +10,7 @@ // REQUIRES: swift_test_mode_optimize_none // REQUIRES: concurrency // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime import Builtin import Swift diff --git a/test/IRGen/async/run-partialapply-capture-classinstance-to-void.sil b/test/IRGen/async/run-partialapply-capture-classinstance-to-void.sil index f38e4cb52bb..bd4a1ea9aed 100644 --- a/test/IRGen/async/run-partialapply-capture-classinstance-to-void.sil +++ b/test/IRGen/async/run-partialapply-capture-classinstance-to-void.sil @@ -10,6 +10,7 @@ // REQUIRES: swift_test_mode_optimize_none // REQUIRES: concurrency // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime import Builtin import Swift diff --git a/test/IRGen/async/run-partialapply-capture-generic_conformer-and-generic-to-void.sil b/test/IRGen/async/run-partialapply-capture-generic_conformer-and-generic-to-void.sil index f3fc242fc7c..af570ada8e0 100644 --- a/test/IRGen/async/run-partialapply-capture-generic_conformer-and-generic-to-void.sil +++ b/test/IRGen/async/run-partialapply-capture-generic_conformer-and-generic-to-void.sil @@ -10,6 +10,7 @@ // REQUIRES: swift_test_mode_optimize_none // REQUIRES: concurrency // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime import Builtin import Swift diff --git a/test/IRGen/async/run-partialapply-capture-inout-generic-and-in-generic-to-generic.sil b/test/IRGen/async/run-partialapply-capture-inout-generic-and-in-generic-to-generic.sil index 623a645c8aa..45679204f84 100644 --- a/test/IRGen/async/run-partialapply-capture-inout-generic-and-in-generic-to-generic.sil +++ b/test/IRGen/async/run-partialapply-capture-inout-generic-and-in-generic-to-generic.sil @@ -10,6 +10,7 @@ // REQUIRES: swift_test_mode_optimize_none // REQUIRES: concurrency // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime import Builtin import Swift diff --git a/test/IRGen/async/run-partialapply-capture-int64-int64-throws-to-int64.sil b/test/IRGen/async/run-partialapply-capture-int64-int64-throws-to-int64.sil index 3afaf60782a..42862f2ed4c 100644 --- a/test/IRGen/async/run-partialapply-capture-int64-int64-throws-to-int64.sil +++ b/test/IRGen/async/run-partialapply-capture-int64-int64-throws-to-int64.sil @@ -10,6 +10,7 @@ // REQUIRES: swift_test_mode_optimize_none // REQUIRES: concurrency // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime import Builtin import Swift diff --git a/test/IRGen/async/run-partialapply-capture-int64-int64-to-int64.sil b/test/IRGen/async/run-partialapply-capture-int64-int64-to-int64.sil index 237358d3e9f..c890bdf26bd 100644 --- a/test/IRGen/async/run-partialapply-capture-int64-int64-to-int64.sil +++ b/test/IRGen/async/run-partialapply-capture-int64-int64-to-int64.sil @@ -10,6 +10,7 @@ // REQUIRES: swift_test_mode_optimize_none // REQUIRES: concurrency // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime import Builtin import Swift diff --git a/test/IRGen/async/run-partialapply-capture-int64-to-generic.sil b/test/IRGen/async/run-partialapply-capture-int64-to-generic.sil index 83a7f31684b..1b5c9b40b94 100644 --- a/test/IRGen/async/run-partialapply-capture-int64-to-generic.sil +++ b/test/IRGen/async/run-partialapply-capture-int64-to-generic.sil @@ -10,6 +10,7 @@ // REQUIRES: swift_test_mode_optimize_none // REQUIRES: concurrency // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime import Builtin import Swift diff --git a/test/IRGen/async/run-partialapply-capture-struct_classinstance_classinstance-and-int64-to-int64.sil b/test/IRGen/async/run-partialapply-capture-struct_classinstance_classinstance-and-int64-to-int64.sil index 8f68236a903..fa921fbf4ad 100644 --- a/test/IRGen/async/run-partialapply-capture-struct_classinstance_classinstance-and-int64-to-int64.sil +++ b/test/IRGen/async/run-partialapply-capture-struct_classinstance_classinstance-and-int64-to-int64.sil @@ -10,6 +10,7 @@ // REQUIRES: swift_test_mode_optimize_none // REQUIRES: concurrency // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime import Builtin import Swift diff --git a/test/IRGen/async/run-partialapply-capture-structgeneric_classinstance_to_struct_and_error.sil b/test/IRGen/async/run-partialapply-capture-structgeneric_classinstance_to_struct_and_error.sil index bcf4659bc25..d23b577af1b 100644 --- a/test/IRGen/async/run-partialapply-capture-structgeneric_classinstance_to_struct_and_error.sil +++ b/test/IRGen/async/run-partialapply-capture-structgeneric_classinstance_to_struct_and_error.sil @@ -10,6 +10,7 @@ // REQUIRES: swift_test_mode_optimize_none // REQUIRES: concurrency // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime import Builtin import Swift diff --git a/test/IRGen/async/run-partialapply-capture-structgeneric_polymorphic_constrained-to-void.sil b/test/IRGen/async/run-partialapply-capture-structgeneric_polymorphic_constrained-to-void.sil index ead7e5910c9..a56048302dd 100644 --- a/test/IRGen/async/run-partialapply-capture-structgeneric_polymorphic_constrained-to-void.sil +++ b/test/IRGen/async/run-partialapply-capture-structgeneric_polymorphic_constrained-to-void.sil @@ -10,6 +10,7 @@ // REQUIRES: swift_test_mode_optimize_none // REQUIRES: concurrency // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime import Builtin import Swift diff --git a/test/IRGen/async/run-partialapply-capture-type_structgeneric_polymorphic_constrained-to-void.sil b/test/IRGen/async/run-partialapply-capture-type_structgeneric_polymorphic_constrained-to-void.sil index 14ee33ad348..99a547f4e1d 100644 --- a/test/IRGen/async/run-partialapply-capture-type_structgeneric_polymorphic_constrained-to-void.sil +++ b/test/IRGen/async/run-partialapply-capture-type_structgeneric_polymorphic_constrained-to-void.sil @@ -10,6 +10,7 @@ // REQUIRES: swift_test_mode_optimize_none // REQUIRES: concurrency // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime import Builtin import Swift diff --git a/test/IRGen/async/run-partialapply-capture-type_thin-and-classinstance-to-void.sil b/test/IRGen/async/run-partialapply-capture-type_thin-and-classinstance-to-void.sil index 7d117bb853c..48e4d9f94bb 100644 --- a/test/IRGen/async/run-partialapply-capture-type_thin-and-classinstance-to-void.sil +++ b/test/IRGen/async/run-partialapply-capture-type_thin-and-classinstance-to-void.sil @@ -9,7 +9,8 @@ // REQUIRES: executable_test // REQUIRES: swift_test_mode_optimize_none // REQUIRES: concurrency -// UNSUPPORTED: use_oC_stdlib +// UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime import Builtin import Swift diff --git a/test/IRGen/async/run-structinstance_generic-void-to-void-constrained.swift b/test/IRGen/async/run-structinstance_generic-void-to-void-constrained.swift index cb6d7c0b553..cee2bfaf922 100644 --- a/test/IRGen/async/run-structinstance_generic-void-to-void-constrained.swift +++ b/test/IRGen/async/run-structinstance_generic-void-to-void-constrained.swift @@ -8,6 +8,7 @@ // REQUIRES: swift_test_mode_optimize_none // REQUIRES: concurrency // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime import _Concurrency diff --git a/test/IRGen/async/run-thintothick-int64-to-void.sil b/test/IRGen/async/run-thintothick-int64-to-void.sil index b6b8fa2bab1..983d2d90609 100644 --- a/test/IRGen/async/run-thintothick-int64-to-void.sil +++ b/test/IRGen/async/run-thintothick-int64-to-void.sil @@ -10,6 +10,7 @@ // REQUIRES: swift_test_mode_optimize_none // REQUIRES: concurrency // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime import Builtin import Swift diff --git a/test/IRGen/async/throwing.swift b/test/IRGen/async/throwing.swift index a953962e67e..d4d77b98526 100644 --- a/test/IRGen/async/throwing.swift +++ b/test/IRGen/async/throwing.swift @@ -6,6 +6,7 @@ // REQUIRES: executable_test // REQUIRES: concurrency // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime // https://bugs.swift.org/browse/SR-14333 // UNSUPPORTED: OS=windows-msvc diff --git a/test/Interpreter/actor_class_forbid_objc_assoc_objects.swift b/test/Interpreter/actor_class_forbid_objc_assoc_objects.swift index 667e9eb9bb0..cbe25c5c791 100644 --- a/test/Interpreter/actor_class_forbid_objc_assoc_objects.swift +++ b/test/Interpreter/actor_class_forbid_objc_assoc_objects.swift @@ -6,6 +6,7 @@ // REQUIRES: objc_interop // REQUIRES: executable_test // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime import ObjectiveC import _Concurrency diff --git a/test/Interpreter/actor_subclass_metatypes.swift b/test/Interpreter/actor_subclass_metatypes.swift index d33f0c5df8d..e06b3568d5d 100644 --- a/test/Interpreter/actor_subclass_metatypes.swift +++ b/test/Interpreter/actor_subclass_metatypes.swift @@ -6,6 +6,7 @@ // REQUIRES: objc_interop // REQUIRES: executable_test // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime import ObjectiveC import _Concurrency diff --git a/test/Interpreter/async.swift b/test/Interpreter/async.swift index a98f11a60f6..e064512d442 100644 --- a/test/Interpreter/async.swift +++ b/test/Interpreter/async.swift @@ -6,6 +6,7 @@ // REQUIRES: concurrency // REQUIRES: executable_test // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime // UNSUPPORTED: CPU=arm64e diff --git a/test/Interpreter/bridged_casts_folding.swift b/test/Interpreter/bridged_casts_folding.swift index 570a9b54e01..7fe9f52fab4 100644 --- a/test/Interpreter/bridged_casts_folding.swift +++ b/test/Interpreter/bridged_casts_folding.swift @@ -7,6 +7,7 @@ // FIXME: we should run this test if the OS-provided stdlib is recent enough. // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime // REQUIRES: executable_test // REQUIRES: objc_interop diff --git a/test/PlaygroundTransform/implicit_return_never.swift b/test/PlaygroundTransform/implicit_return_never.swift index e87e19c8f29..c9c5ed49a58 100644 --- a/test/PlaygroundTransform/implicit_return_never.swift +++ b/test/PlaygroundTransform/implicit_return_never.swift @@ -7,6 +7,7 @@ // The runtime error format changed after the 5.3 release. // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime // NOTE: not.py is used above instead of "not --crash" because simctl's exit // status doesn't reflect whether its child process crashed or not. So "not diff --git a/test/PlaygroundTransform/placeholder.swift b/test/PlaygroundTransform/placeholder.swift index 51f370382f4..a9d0d0a7cd5 100644 --- a/test/PlaygroundTransform/placeholder.swift +++ b/test/PlaygroundTransform/placeholder.swift @@ -8,6 +8,7 @@ // The runtime error format changed after the 5.3 release. // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime // NOTE: not.py is used above instead of "not --crash" because simctl's exit // status doesn't reflect whether its child process crashed or not. So "not diff --git a/test/Runtime/environment_variables.swift b/test/Runtime/environment_variables.swift index 0c88cb9bb9c..f8b2d6e3432 100644 --- a/test/Runtime/environment_variables.swift +++ b/test/Runtime/environment_variables.swift @@ -4,6 +4,7 @@ // REQUIRES: executable_test // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime // RUN: env %env-SWIFT_DEBUG_HELP=YES %env-SWIFT_DEBUG_SOME_UNKNOWN_VARIABLE=42 %env-SWIFT_DEBUG_ENABLE_METADATA_ALLOCATION_ITERATION=YES %env-SWIFT_DEBUG_IMPLICIT_OBJC_ENTRYPOINT=abc %env-SWIFT_DETERMINISTIC_HASHING=whatever %env-SWIFT_ENABLE_MANGLED_NAME_VERIFICATION=YES %env-SWIFT_DEBUG_ENABLE_MALLOC_SCRIBBLE=YES %target-run %t/main 2>&1 | %FileCheck %s --dump-input fail diff --git a/test/Runtime/protocol_conformance_collision.swift b/test/Runtime/protocol_conformance_collision.swift index 865e6b7effb..3d9d2cf6144 100644 --- a/test/Runtime/protocol_conformance_collision.swift +++ b/test/Runtime/protocol_conformance_collision.swift @@ -15,6 +15,7 @@ // UNSUPPORTED: DARWIN_SIMULATOR=watchos // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime import Accelerate import Foundation diff --git a/test/stdlib/CodableTests.swift b/test/stdlib/CodableTests.swift index 393663bd2d7..bae397b0521 100644 --- a/test/stdlib/CodableTests.swift +++ b/test/stdlib/CodableTests.swift @@ -12,6 +12,7 @@ // RUN: %target-run-simple-swift // REQUIRES: executable_test // REQUIRES: objc_interop +// UNSUPPORTED: back_deployment_runtime import Foundation import CoreGraphics diff --git a/test/stdlib/MultipliedFullWidth.swift b/test/stdlib/MultipliedFullWidth.swift index 0346ccf90db..a6739ce93df 100644 --- a/test/stdlib/MultipliedFullWidth.swift +++ b/test/stdlib/MultipliedFullWidth.swift @@ -12,6 +12,7 @@ // RUN: %target-run-simple-swift // REQUIRES: executable_test +// UNSUPPORTED: back_deployment_runtime import StdlibUnittest diff --git a/test/stdlib/NumericParsing2.swift.gyb b/test/stdlib/NumericParsing2.swift.gyb index 89cd47308df..e0facb79760 100644 --- a/test/stdlib/NumericParsing2.swift.gyb +++ b/test/stdlib/NumericParsing2.swift.gyb @@ -19,6 +19,7 @@ // // Behaviors below are different in old Swift runtime libraries // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime // ================================================================ // diff --git a/validation-test/Runtime/rdar64672291.swift b/validation-test/Runtime/rdar64672291.swift index c8e4b1daf88..00405aa6eec 100644 --- a/validation-test/Runtime/rdar64672291.swift +++ b/validation-test/Runtime/rdar64672291.swift @@ -2,6 +2,7 @@ // REQUIRES: objc_interop // REQUIRES: executable_test // UNSUPPORTED: use_os_stdlib +// UNSUPPORTED: back_deployment_runtime import Foundation