Skip to content

Commit

Permalink
Add exclusions for failing NativeAOT/arm32 tests
Browse files Browse the repository at this point in the history
  • Loading branch information
filipnavara committed Feb 15, 2024
1 parent 96e5e6e commit fccc70a
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/tests/issues.targets
Original file line number Diff line number Diff line change
Expand Up @@ -1166,6 +1166,16 @@
</ExcludeList>
</ItemGroup>

<!-- NativeAOT arm32 specific excludes -->
<ItemGroup Condition="'$(XunitTestBinBase)' != '' and '$(TestBuildMode)' == 'nativeaot' and '$(RuntimeFlavor)' == 'coreclr' and ('$(TargetArchitecture)' == 'arm' or '$(AltJitArch)' == 'arm')">
<ExcludeList Include="$(XunitTestBinBase)/Loader/classloader/Casting/punning*">
<Issue>https://github.com/dotnet/runtime/issues/98493</Issue>
</ExcludeList>
<ExcludeList Include="$(XunitTestBinBase)/JIT/Directed/nullabletypes/Desktop/boxunboxvaluetype_*">
<Issue>https://github.com/dotnet/runtime/issues/95517</Issue>
</ExcludeList>
</ItemGroup>

<!-- run.proj finds all the *.cmd/*.sh scripts in a test folder and creates corresponding test methods.
Exclude these scripts to avoid creating such methods for the superpmicollect dependent test projects
and running them separately from superpmicollect test. These should be excluded regardless of RuntimeFlavor/os/arch-->
Expand Down

0 comments on commit fccc70a

Please sign in to comment.