Skip to content

Commit 4bb41a7

Browse files
authored
Disable building of tests with build breaks (#88094)
Related to #87879
1 parent f777fe6 commit 4bb41a7

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/tests/JIT/jit64/jit64_3.csproj

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<ItemGroup>
3-
<!-- Issue: https://github.com/dotnet/runtime/issues/87879 -->
4-
<ProjectsToSkip Include="opt/rngchk/RngchkStress2_o.csproj" />
5-
<ProjectsToSkip Include="opt/cse/hugeSimpleExpr1.csproj" />
6-
7-
<MergedWrapperProjectReference Include="opt/**/*.??proj" Exclude="@(ProjectsToSkip)" />
3+
<MergedWrapperProjectReference Include="opt/**/*.??proj" />
84
</ItemGroup>
95

106
<Import Project="$(TestSourceDir)MergedTestRunner.targets" />

src/tests/JIT/jit64/opt/cse/hugeSimpleExpr1.csproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
<RequiresProcessIsolation>true</RequiresProcessIsolation>
55
<!-- Timeout on Arm64 -->
66
<GCStressIncompatible>true</GCStressIncompatible>
7+
<!-- Issue: https://github.com/dotnet/runtime/issues/87879 -->
8+
<DisableProjectBuild>true</DisableProjectBuild>
79
</PropertyGroup>
810
<PropertyGroup>
911
<DebugType>Full</DebugType>

src/tests/JIT/jit64/opt/rngchk/RngchkStress2_o.csproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
<PropertyGroup>
33
<DebugType>PdbOnly</DebugType>
44
<Optimize>True</Optimize>
5+
<!-- Issue: https://github.com/dotnet/runtime/issues/87879 -->
6+
<DisableProjectBuild>true</DisableProjectBuild>
57
</PropertyGroup>
68
<ItemGroup>
79
<Compile Include="RngchkStress2.cs" />

0 commit comments

Comments
 (0)