You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since the fix is in the CoreCLR VM side, we need to disable the tests in JitStress (as they won't be fixed when the JIT introduces these extra checks when not asking the VM)
Copy file name to clipboardExpand all lines: src/tests/Interop/IJW/CopyConstructorMarshaler/CopyConstructorMarshaler.cs
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -62,6 +62,7 @@ public static int TestEntryPoint()
62
62
}
63
63
64
64
[Fact]
65
+
[SkipOnCoreClr("JitStress and MinOpts can introduce extra copies that won't happen in production scenarios.",RuntimeTestModes.JitStress|RuntimeTestModes.JitMinOpts)]
@@ -73,6 +74,7 @@ public static void CopyConstructorsInArgumentStackSlots()
73
74
}
74
75
75
76
[Fact]
77
+
[SkipOnCoreClr("JitStress and MinOpts can introduce extra copies that won't happen in production scenarios.",RuntimeTestModes.JitStress|RuntimeTestModes.JitMinOpts)]
0 commit comments