Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Do not run DynamicGenerics on mac (#74618)
  • Loading branch information
MichalStrehovsky authored and jkotas committed Sep 27, 2022
commit 8c2a59b52a5c986d1f7712e6f3dea8b9d89c19ba
9 changes: 8 additions & 1 deletion src/tests/issues.targets
Original file line number Diff line number Diff line change
Expand Up @@ -921,7 +921,14 @@
</ExcludeList>
</ItemGroup>

<!-- NativeAOT specific -->
<!-- All OSX targets on NativeAOT -->
<ItemGroup Condition="'$(XunitTestBinBase)' != '' and '$(TargetsOSX)' == 'true' and '$(TestBuildMode)' == 'nativeaot' and '$(RuntimeFlavor)' == 'coreclr' ">
<ExcludeList Include="$(XunitTestBinBase)/nativeaot/SmokeTests/DynamicGenerics/DynamicGenerics/*">
<Issue>https://github.com/dotnet/runtime/issues/73299</Issue>
</ExcludeList>
</ItemGroup>

<!-- NativeAOT specific -->
<ItemGroup Condition="'$(XunitTestBinBase)' != '' and '$(TestBuildMode)' == 'nativeaot' and '$(RuntimeFlavor)' == 'coreclr'">
<ExcludeList Include="$(XunitTestBinBase)/Loader/classloader/StaticVirtualMethods/NegativeTestCases/**">
<Issue>https://github.com/dotnet/runtimelab/issues/155: Compatible TypeLoadException for invalid inputs</Issue>
Expand Down