Skip to content

Commit

Permalink
Revert "Adjust the UCO entry point tests to use 𐍈otherwise encoded as…
Browse files Browse the repository at this point in the history
… \U000103348"

This reverts commit 5712d69.
  • Loading branch information
lewing committed Sep 10, 2024
1 parent 5712d69 commit 47d20a0
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/mono/wasm/Wasm.Build.Tests/PInvokeTableGeneratorTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -452,8 +452,8 @@ public unsafe static int Main()
{
((delegate* unmanaged<void>)&A.Conflict.C)();
((delegate* unmanaged<void>)&B.Conflict.C)();
((delegate* unmanaged<void>)&A.Conflict.C\U00010348)();
((delegate* unmanaged<void>)&B.Conflict.C\U00010348)();
((delegate* unmanaged<void>)&A.Conflict.C\u733f)();
((delegate* unmanaged<void>)&B.Conflict.C\u733f)();
return 42;
}
}
Expand All @@ -465,9 +465,9 @@ public static void C() {
Console.WriteLine("A.Conflict.C");
}

[UnmanagedCallersOnly(EntryPoint = "A_Conflict_C\U00010348")]
public static void C\U00010348() {
Console.WriteLine("A.Conflict.C\U00010348");
[UnmanagedCallersOnly(EntryPoint = "A_Conflict_C\u733f")]
public static void C\u733f() {
Console.WriteLine("A.Conflict.C\U0001F412");
}
}
}
Expand All @@ -479,9 +479,9 @@ public static void C() {
Console.WriteLine("B.Conflict.C");
}

[UnmanagedCallersOnly(EntryPoint = "B_Conflict_C\U00010348")]
public static void C\U00010348() {
Console.WriteLine("B.Conflict.C\U00010348");
[UnmanagedCallersOnly(EntryPoint = "B_Conflict_C\u733f")]
public static void C\u733f() {
Console.WriteLine("B.Conflict.C\U0001F412");
}
}
}
Expand Down

0 comments on commit 47d20a0

Please sign in to comment.