Skip to content

Commit 39e8c08

Browse files
authored
Disable CoreCLR interpreter test for JIT stress (#116219)
There is a problem in the interpreter when handling calls to code that doesn't have native code yet, but that has precode already. The call to MethodDesc::PrepareInitialCode triggers an assert down its call chain due to the prestub existence. This change disables running the interpreter test with JIT stress until the problem is solved.
1 parent 8d59055 commit 39e8c08

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/tests/JIT/interpreter/InterpreterTester.csproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
<NativeAotIncompatible>true</NativeAotIncompatible>
88
<!-- Temporarily disabled due to https://github.com/dotnet/runtime/issues/112827 -->
99
<GCStressIncompatible>true</GCStressIncompatible>
10+
<!-- Temporarily disabled due to problems with generating interpreter bytecode for methods with existing prestub -->
11+
<JitOptimizationSensitive>true</JitOptimizationSensitive>
1012
</PropertyGroup>
1113
<ItemGroup>
1214
<Compile Include="InterpreterTester.cs" />

0 commit comments

Comments
 (0)