Skip to content

Commit

Permalink
Disable building of tests with build breaks (#88094)
Browse files Browse the repository at this point in the history
Related to #87879
  • Loading branch information
jkotas authored Jun 27, 2023
1 parent f777fe6 commit 4bb41a7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 1 addition & 5 deletions src/tests/JIT/jit64/jit64_3.csproj
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<!-- Issue: https://github.com/dotnet/runtime/issues/87879 -->
<ProjectsToSkip Include="opt/rngchk/RngchkStress2_o.csproj" />
<ProjectsToSkip Include="opt/cse/hugeSimpleExpr1.csproj" />

<MergedWrapperProjectReference Include="opt/**/*.??proj" Exclude="@(ProjectsToSkip)" />
<MergedWrapperProjectReference Include="opt/**/*.??proj" />
</ItemGroup>

<Import Project="$(TestSourceDir)MergedTestRunner.targets" />
Expand Down
2 changes: 2 additions & 0 deletions src/tests/JIT/jit64/opt/cse/hugeSimpleExpr1.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
<RequiresProcessIsolation>true</RequiresProcessIsolation>
<!-- Timeout on Arm64 -->
<GCStressIncompatible>true</GCStressIncompatible>
<!-- Issue: https://github.com/dotnet/runtime/issues/87879 -->
<DisableProjectBuild>true</DisableProjectBuild>
</PropertyGroup>
<PropertyGroup>
<DebugType>Full</DebugType>
Expand Down
2 changes: 2 additions & 0 deletions src/tests/JIT/jit64/opt/rngchk/RngchkStress2_o.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
<PropertyGroup>
<DebugType>PdbOnly</DebugType>
<Optimize>True</Optimize>
<!-- Issue: https://github.com/dotnet/runtime/issues/87879 -->
<DisableProjectBuild>true</DisableProjectBuild>
</PropertyGroup>
<ItemGroup>
<Compile Include="RngchkStress2.cs" />
Expand Down

0 comments on commit 4bb41a7

Please sign in to comment.