diff --git a/test/Interop/SwiftToCxx/functions/swift-functions-errors-execution.cpp b/test/Interop/SwiftToCxx/functions/swift-functions-errors-execution.cpp index 81223321ffb8d..0b9069bd1e182 100644 --- a/test/Interop/SwiftToCxx/functions/swift-functions-errors-execution.cpp +++ b/test/Interop/SwiftToCxx/functions/swift-functions-errors-execution.cpp @@ -11,6 +11,9 @@ // REQUIRES: executable_test // UNSUPPORTED: OS=windows-msvc +// rdar://102167469 +// UNSUPPORTED: CPU=arm64e + #include #include #include "functions.h" diff --git a/test/Macros/macro_plugin.swift b/test/Macros/macro_plugin.swift index 72359ab6a4886..7d678ecd2bb20 100644 --- a/test/Macros/macro_plugin.swift +++ b/test/Macros/macro_plugin.swift @@ -5,6 +5,9 @@ // FIXME: Swift parser is not enabled on Linux CI yet. // REQUIRES: OS=macosx +// rdar://102160067 +// UNSUPPORTED: CPU=arm64e + let _ = #customStringify(1.byteSwapped + 2.advanced(by: 10)) // CHECK: (macro_expansion_expr type='(Int, String)' {{.*}} name=customStringify diff --git a/test/Macros/macro_plugin_diagnostics.swift b/test/Macros/macro_plugin_diagnostics.swift index 7f38e6333b1f0..bd2775aafddcd 100644 --- a/test/Macros/macro_plugin_diagnostics.swift +++ b/test/Macros/macro_plugin_diagnostics.swift @@ -6,6 +6,9 @@ // FIXME: Swift parser is not enabled on Linux CI yet. // REQUIRES: OS=macosx +// rdar://102160067 +// UNSUPPORTED: CPU=arm64e + // CHECK: :{{.*}}: warning: compiler plugin module 'MacroDefinitionMissingAllMacros' (in {{.*}}/libMacroDefinitionMissingAllMacros.dylib) is missing a top-level computed property 'public var allMacros: [Any.Type]' to declare all macros; undeclared macros will be ignored let _ = #customStringify(1.byteSwapped + 2.advanced(by: 10)) diff --git a/test/expr/closure/implicit_weak_capture.swift b/test/expr/closure/implicit_weak_capture.swift index 9ec5f82c5492b..c01da625cbb98 100644 --- a/test/expr/closure/implicit_weak_capture.swift +++ b/test/expr/closure/implicit_weak_capture.swift @@ -1,9 +1,11 @@ // RUN: %target-run-simple-swift(-Xfrontend -disable-availability-checking) // REQUIRES: concurrency - // REQUIRES: executable_test +// rdar://102155748 +// UNSUPPORTED: back_deployment_runtime + func runIn10ms(_ closure: @escaping @Sendable () -> Void) { Task { try! await Task.sleep(nanoseconds: 10_000_000)