Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/libraries/Common/tests/AppleTestRunner/AppleTestRunner.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ public class SimpleTestRunner : iOSApplicationEntryPoint, IDevice
{
// to be wired once https://github.com/dotnet/xharness/pull/46 is merged
[DllImport("__Internal")]
public extern static void mono_ios_append_output (string value);
public extern static void mono_ios_append_output ([MarshalAs(UnmanagedType.LPUTF8Str)] string value);

[DllImport("__Internal")]
public extern static void mono_ios_set_summary (string value);
public extern static void mono_ios_set_summary ([MarshalAs(UnmanagedType.LPUTF8Str)] string value);

private static List<string> s_testLibs = new List<string>();
private static List<Assembly>? s_testAssemblies;
Expand Down
Loading