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 authored and MichalStrehovsky committed Feb 15, 2024
1 parent 7886cee commit 15249d4
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 15249d4

Please sign in to comment.