From 981813a8c6715f8bb900d24752446332a644a99b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Sep 2026 13:02:44 +0000 Subject: [PATCH] [ci-fix] Mark Apple runner interop as safe Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- src/libraries/Common/tests/AppleTestRunner/AppleTestRunner.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libraries/Common/tests/AppleTestRunner/AppleTestRunner.cs b/src/libraries/Common/tests/AppleTestRunner/AppleTestRunner.cs index ef38eea9823e21..d9d12f41615740 100644 --- a/src/libraries/Common/tests/AppleTestRunner/AppleTestRunner.cs +++ b/src/libraries/Common/tests/AppleTestRunner/AppleTestRunner.cs @@ -21,10 +21,10 @@ public partial class SimpleTestRunner : iOSApplicationEntryPoint, IDevice { // to be wired once https://github.com/dotnet/xharness/pull/46 is merged [LibraryImport("__Internal", EntryPoint = "mono_ios_append_output", StringMarshalling = StringMarshalling.Utf8)] - private static partial void mono_ios_append_output (string value); + private static safe partial void mono_ios_append_output (string value); [LibraryImport("__Internal", EntryPoint = "mono_ios_set_summary", StringMarshalling = StringMarshalling.Utf8)] - private static partial void mono_ios_set_summary (string value); + private static safe partial void mono_ios_set_summary (string value); private static List s_testLibs = new List(); private static List? s_testAssemblies;