Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ public void TestDynamicMethodEmitCalliBlittable()

[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/2383", TestRuntimes.Mono)]
[ActiveIssue("https://github.com/dotnet/runtime/issues/118965", typeof(PlatformDetection), nameof(PlatformDetection.IsCoreClrInterpreter))]
public void TestEmitCalliNonBlittable()
{
string input = "Test string!", result = "!gnirts tseT";
Expand Down Expand Up @@ -142,6 +143,7 @@ public void TestEmitCalliNonBlittable()
}

[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/118965", typeof(PlatformDetection), nameof(PlatformDetection.IsCoreClrInterpreter))]
public void TestDynamicMethodEmitCalliNonBlittable()
{
string input = "Test string!", result = "!gnirts tseT";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1918,9 +1918,10 @@ public void EmitCalliManagedBlittable()
private static string StringReverse(string a) => string.Join("", a.Reverse());

[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/118965", typeof(PlatformDetection), nameof(PlatformDetection.IsCoreClrInterpreter))]
public void EmitCalliNonBlittable()
{
string input = "Test string!", result = "!gnirts tseT";
string input = "Test string!", result = "!gnirts tseT";
using (TempFile file = TempFile.Create())
{
PersistedAssemblyBuilder ab = AssemblySaveTools.PopulateAssemblyBuilder(new AssemblyName("EmitCalliNonBlittable"));
Expand Down