Skip to content
Merged
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
4 changes: 4 additions & 0 deletions src/tests/JIT/jit64/opt/cse/HugeArray1.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
<!-- Needed for GCStressIncompatible -->
<RequiresProcessIsolation>true</RequiresProcessIsolation>
<GCStressIncompatible>true</GCStressIncompatible>

<!-- The test is too complex to compile on macOS where secondary threads have small stack size by default
and that is not enough for Roslyn, see https://github.com/dotnet/runtime/issues/87879 -->
<DisableProjectBuild Condition="'$(HostOS)' == 'osx'">true</DisableProjectBuild>
</PropertyGroup>
<PropertyGroup>
<DebugType>Full</DebugType>
Expand Down
6 changes: 4 additions & 2 deletions src/tests/JIT/jit64/opt/cse/hugeSimpleExpr1.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,10 @@
<RequiresProcessIsolation>true</RequiresProcessIsolation>
<!-- Timeout on Arm64 -->
<GCStressIncompatible>true</GCStressIncompatible>
<!-- Issue: https://github.com/dotnet/runtime/issues/87879 -->
<DisableProjectBuild>true</DisableProjectBuild>

<!-- The test is too complex to compile on macOS where secondary threads have small stack size by default
and that is not enough for Roslyn, see https://github.com/dotnet/runtime/issues/87879 -->
<DisableProjectBuild Condition="'$(HostOS)' == 'osx'">true</DisableProjectBuild>
</PropertyGroup>
<PropertyGroup>
<DebugType>Full</DebugType>
Expand Down
6 changes: 4 additions & 2 deletions src/tests/JIT/jit64/opt/rngchk/RngchkStress2_o.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@
<PropertyGroup>
<DebugType>PdbOnly</DebugType>
<Optimize>True</Optimize>
<!-- Issue: https://github.com/dotnet/runtime/issues/87879 -->
<DisableProjectBuild>true</DisableProjectBuild>

<!-- The test is too complex to compile on macOS where secondary threads have small stack size by default
and that is not enough for Roslyn, see https://github.com/dotnet/runtime/issues/87879 -->
<DisableProjectBuild Condition="'$(HostOS)' == 'osx'">true</DisableProjectBuild>
</PropertyGroup>
<ItemGroup>
<Compile Include="RngchkStress2.cs" />
Expand Down