Skip to content

Commit

Permalink
Disable Comparer_get_Default test on linux-arm64-crossgen (dotnet#108725
Browse files Browse the repository at this point in the history
)

This test was disabled on windows-arm64, but the outerloop also fails on linux-arm64.

See dotnet#104927
  • Loading branch information
steveisok authored and rzikm committed Oct 11, 2024
1 parent 93dd112 commit 98af00b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tests/issues.targets
Original file line number Diff line number Diff line change
Expand Up @@ -647,8 +647,8 @@
</ExcludeList>
</ItemGroup>

<!-- Crossgen2 win-arm64 specific excludes -->
<ItemGroup Condition="'$(XunitTestBinBase)' != '' and ('$(TestBuildMode)' == 'crossgen2' or '$(TestBuildMode)' == 'crossgen') and '$(RuntimeFlavor)' == 'coreclr' and '$(TargetArchitecture)' == 'arm64' and '$(TargetOS)' == 'windows'">
<!-- Crossgen2 win-arm64 and linux-arm64 specific excludes -->
<ItemGroup Condition="'$(XunitTestBinBase)' != '' and ('$(TestBuildMode)' == 'crossgen2' or '$(TestBuildMode)' == 'crossgen') and '$(RuntimeFlavor)' == 'coreclr' and '$(TargetArchitecture)' == 'arm64' and ('$(TargetOS)' == 'windows' or '$(TargetOS)' == 'linux')">
<ExcludeList Include="$(XunitTestBinBase)/JIT/opt/Devirtualization/Comparer_get_Default/*">
<Issue>https://github.com/dotnet/runtime/issues/104927</Issue>
</ExcludeList>
Expand Down

0 comments on commit 98af00b

Please sign in to comment.