Skip to content

Commit 583bbbf

Browse files
committed
[wasm] Disable aot tests failing due to OOM
- dotnet#65356 - OOM while linking `System.Text.Json.SourceGeneration.Roslyn3.11.Tests` - dotnet#65411 - possible OOM when compiling `System.Text.Json.SourceGeneration.Roslyn4.0.Tests.dll.bc` -> `.o` `System.Text.Json.SourceGeneration.Roslyn4.0.Tests` - dotnet#61524 - OOM while linking `System.Text.Json.Tests`
1 parent 5d17339 commit 583bbbf

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/libraries/tests.proj

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,15 @@
3333
<ItemGroup Condition="'$(TargetOS)' == 'Browser' and '$(BuildAOTTestsOnHelix)' == 'true' and '$(RunDisabledWasmTests)' != 'true' and '$(RunAOTCompilation)' == 'true' and '$(BrowserHost)' == 'Windows'">
3434
<!-- https://github.com/dotnet/runtime/issues/61756 -->
3535
<ProjectExclusions Include="$(MSBuildThisFileDirectory)System.Text.RegularExpressions\tests\System.Text.RegularExpressions.Tests.csproj" />
36+
37+
<!-- https://github.com/dotnet/runtime/issues/65356 - OOM while linking -->
38+
<ProjectExclusions Include="$(MSBuildThisFileDirectory)System.Text.Json\tests\System.Text.Json.SourceGeneration.Tests\System.Text.Json.SourceGeneration.Roslyn3.11.Tests.csproj" />
39+
<!-- https://github.com/dotnet/runtime/issues/65411 - possible OOM when compiling
40+
System.Text.Json.SourceGeneration.Roslyn4.0.Tests.dll.bc -> .o -->
41+
<ProjectExclusions Include="$(MSBuildThisFileDirectory)System.Text.Json\tests\System.Text.Json.SourceGeneration.Tests\System.Text.Json.SourceGeneration.Roslyn4.0.Tests.csproj" />
42+
43+
<!-- https://github.com/dotnet/runtime/issues/61524 - OOM while linking -->
44+
<ProjectExclusions Include="$(MSBuildThisFileDirectory)System.Text.Json\tests\System.Text.Json.Tests\System.Text.Json.Tests.csproj" />
3645
</ItemGroup>
3746

3847
<!-- Projects that don't support code coverage measurement. -->

0 commit comments

Comments
 (0)