Skip to content

Commit

Permalink
Disable tests that run crossgen2 in the sanitizer modes
Browse files Browse the repository at this point in the history
  • Loading branch information
jkoritzinsky committed Jan 17, 2024
1 parent c347bb8 commit 32b3836
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/tests/readytorun/tests/mainv1.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
<CrossGenTest>false</CrossGenTest>
<!-- https://github.com/dotnet/runtime/issues/73138 -->
<IlasmRoundTripIncompatible>true</IlasmRoundTripIncompatible>
<!-- This test launches crossgen2 with dotnet, so we would need a non-sanitzed jitinterface library. To simplify our infrastructure, we'll instead skip this test. -->
<CLRTestTargetUnsupported Condition="'$(EnableNativeSanitizers)' != ''">true</CLRTestTargetUnsupported>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="fieldgetter.ilproj" />
Expand Down
2 changes: 2 additions & 0 deletions src/tests/readytorun/tests/mainv2.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
<CrossGenTest>false</CrossGenTest>
<!-- https://github.com/dotnet/runtime/issues/73954 -->
<IlasmRoundTripIncompatible>true</IlasmRoundTripIncompatible>
<!-- This test launches crossgen2 with dotnet, so we would need a non-sanitzed jitinterface library. To simplify our infrastructure, we'll instead skip this test. -->
<CLRTestTargetUnsupported Condition="'$(EnableNativeSanitizers)' != ''">true</CLRTestTargetUnsupported>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="fieldgetter.ilproj" />
Expand Down

0 comments on commit 32b3836

Please sign in to comment.