From b8b5073f752b45a54152b5af6092966cfa186432 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 13 May 2026 01:49:10 +0000 Subject: [PATCH 1/2] Mark SwiftErrorHandling as InterpreterIncompatible (#127897) The CoreCLR interpreter does not implement the Swift error-return calling convention (SwiftError* parameter), causing TestSwiftErrorThrown to always fail under interpreter mode. Linked KBE: https://github.com/dotnet/runtime/issues/127897 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .../Interop/Swift/SwiftErrorHandling/SwiftErrorHandling.csproj | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/tests/Interop/Swift/SwiftErrorHandling/SwiftErrorHandling.csproj b/src/tests/Interop/Swift/SwiftErrorHandling/SwiftErrorHandling.csproj index edf38fa91a3f66..d2a8d091f53f38 100644 --- a/src/tests/Interop/Swift/SwiftErrorHandling/SwiftErrorHandling.csproj +++ b/src/tests/Interop/Swift/SwiftErrorHandling/SwiftErrorHandling.csproj @@ -3,6 +3,8 @@ true true + + true From aa1345fa87a4971e86eba8734288a3a58670bbb1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 13 May 2026 01:49:15 +0000 Subject: [PATCH 2/2] ci: trigger checks