Skip to content

Commit d05c0a7

Browse files
committed
Temp change for testing
- (Temporarily) print out disassembly for tests, (hopefully) including the failing Vector4.Shuffle test that we haven't been able to reproduce the problem of yet Update testenvironment.proj
1 parent eacf11a commit d05c0a7

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/tests/Common/testenvironment.proj

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,8 @@
8686
DOTNET_JitOptRepeat;
8787
DOTNET_JitOptRepeatCount;
8888
DOTNET_JitDoReversePostOrderLayout;
89+
DOTNET_JitDisasm;
90+
DOTNET_JitDisasmWithCodeBytes;
8991
</DOTNETVariables>
9092
</PropertyGroup>
9193
<ItemGroup>
@@ -99,14 +101,16 @@
99101
<DbgEnableMiniDump Condition="'$(TargetsWindows)' != 'true'">1</DbgEnableMiniDump> <!-- Enable minidumps for all scenarios -->
100102
<DbgMiniDumpName Condition="'$(TargetsWindows)' != 'true'">$HELIX_DUMP_FOLDER/coredump.%d.dmp</DbgMiniDumpName>
101103
<EnableCrashReport Condition="'$(TargetsWindows)' != 'true'">1</EnableCrashReport>
104+
<JitDisasm>*Shuffle*</JitDisasm>
105+
<JitDisasmWithCodeBytes>1</JitDisasmWithCodeBytes>
102106
</TestEnvironment>
103107
</ItemDefinitionGroup>
104108

105109
<!-- TestEnvironment is a mapping between Scenario and DOTNET_* environment variable values that are written to __TestEnv file -->
106110
<ItemGroup>
107111
<!-- "normal" scenario doesn't define any DOTNET_* variables and uses the coreclr runtime default values
108112
while other scenarios use the default values of DOTNET_* variables defined in ItemDefinitionGroup above -->
109-
<TestEnvironment Include="normal" TieredCompilation="" />
113+
<TestEnvironment Include="normal" TieredCompilation="" JitDisasm="*Shuffle*" JitDisasmWithCodeBytes="1" />
110114
<TestEnvironment Include="jitminopts" JITMinOpts="1" />
111115
<TestEnvironment Include="no_tiered_compilation" TieredCompilation="0" />
112116
<TestEnvironment Include="forcerelocs" ForceRelocs="1" />

0 commit comments

Comments
 (0)