Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Disable mcc tests against issue #32320 #32372

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
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
3 changes: 3 additions & 0 deletions src/coreclr/tests/issues.targets
Original file line number Diff line number Diff line change
Expand Up @@ -283,6 +283,9 @@
<ExcludeList Include="$(XunitTestBinBase)/JIT/Directed/tailcall/more_tailcalls/*">
<Issue>Unix arm32 does not support tailcall helper</Issue>
</ExcludeList>
<ExcludeList Include="$(XunitTestBinBase)/JIT/jit64/mcc/**/*">
<Issue>https://github.com/dotnet/runtime/issues/32320</Issue>
</ExcludeList>
</ItemGroup>

<!-- Arm64 All OS -->
Expand Down
3 changes: 2 additions & 1 deletion src/coreclr/tests/testgrouping.proj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
<XUnitWrapperDll>$(BinDir)JIT\jit64\JIT.jit64.XUnitWrapper.dll</XUnitWrapperDll>
</TestGrouping>

<TestGrouping Condition="'$(BuildOS)' == 'Windows_NT'" Include="$(BinDir)JIT\jit64\mcc\**">
<!-- Disabled on ARM due to https://github.com/dotnet/runtime/issues/32320 -->
<TestGrouping Condition="'$(BuildOS)' == 'Windows_NT' and '$(BuildArch)' != 'arm'" Include="$(BinDir)JIT\jit64\mcc\**">
<TestGroup>JIT.jit64.mcc</TestGroup>
<XUnitWrapperDll>$(BinDir)JIT\jit64\JIT.jit64.XUnitWrapper.dll</XUnitWrapperDll>
</TestGrouping>
Expand Down