Skip to content

Commit 2196c35

Browse files
authored
[wasm] Disable aot tests failing due to OOM (#65413)
* [wasm] Disable aot tests failing due to OOM - #65356 - OOM while linking `System.Text.Json.SourceGeneration.Roslyn3.11.Tests` - #65411 - possible OOM when compiling `System.Text.Json.SourceGeneration.Roslyn4.0.Tests.dll.bc` -> `.o` `System.Text.Json.SourceGeneration.Roslyn4.0.Tests` - #61524 - OOM while linking `System.Text.Json.Tests` * Disable System.Collections.Immutable.Tests due to #65335
1 parent ced5e7a commit 2196c35

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

src/libraries/tests.proj

+12
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. -->
@@ -277,6 +286,9 @@
277286
<ProjectExclusions Include="$(MSBuildThisFileDirectory)System.Text.RegularExpressions\tests\System.Text.RegularExpressions.Tests.csproj" />
278287
<!-- https://github.com/dotnet/runtime/issues/65012 -->
279288
<ProjectExclusions Include="$(MSBuildThisFileDirectory)System.Threading.Channels\tests\System.Threading.Channels.Tests.csproj" />
289+
290+
<!-- https://github.com/dotnet/runtime/issues/65335 -->
291+
<ProjectExclusions Include="$(MSBuildThisFileDirectory)System.Collections.Immutable\tests\System.Collections.Immutable.Tests.csproj" />
280292
</ItemGroup>
281293

282294
<ItemGroup Condition="'$(TargetOS)' == 'Browser' and '$(RunDisabledWasmTests)' != 'true'">

0 commit comments

Comments
 (0)