Skip to content

Commit

Permalink
Ignore some tests on macOS only due to small stack size (#90116)
Browse files Browse the repository at this point in the history
  • Loading branch information
EgorBo authored Aug 9, 2023
1 parent 18b668a commit 32a8c2d
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
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

0 comments on commit 32a8c2d

Please sign in to comment.