Skip to content

Commit

Permalink
Temp change for testing
Browse files Browse the repository at this point in the history
- (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
  • Loading branch information
hamarb123 committed Jan 22, 2025
1 parent eacf11a commit d05c0a7
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/tests/Common/testenvironment.proj
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,8 @@
DOTNET_JitOptRepeat;
DOTNET_JitOptRepeatCount;
DOTNET_JitDoReversePostOrderLayout;
DOTNET_JitDisasm;
DOTNET_JitDisasmWithCodeBytes;
</DOTNETVariables>
</PropertyGroup>
<ItemGroup>
Expand All @@ -99,14 +101,16 @@
<DbgEnableMiniDump Condition="'$(TargetsWindows)' != 'true'">1</DbgEnableMiniDump> <!-- Enable minidumps for all scenarios -->
<DbgMiniDumpName Condition="'$(TargetsWindows)' != 'true'">$HELIX_DUMP_FOLDER/coredump.%d.dmp</DbgMiniDumpName>
<EnableCrashReport Condition="'$(TargetsWindows)' != 'true'">1</EnableCrashReport>
<JitDisasm>*Shuffle*</JitDisasm>
<JitDisasmWithCodeBytes>1</JitDisasmWithCodeBytes>
</TestEnvironment>
</ItemDefinitionGroup>

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

0 comments on commit d05c0a7

Please sign in to comment.