Skip to content

Commit

Permalink
Disable STJ SG unit tests on x86 hardware. (#99078)
Browse files Browse the repository at this point in the history
  • Loading branch information
eiriktsarpalis authored Feb 29, 2024
1 parent 207f2bb commit 5e603d5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ namespace System.Text.Json.SourceGeneration.UnitTests
[ActiveIssue("https://github.com/dotnet/runtime/issues/58226", TestPlatforms.Browser)]
[SkipOnCoreClr("https://github.com/dotnet/runtime/issues/71962", ~RuntimeConfiguration.Release)]
[SkipOnMono("https://github.com/dotnet/runtime/issues/92467")]
[ConditionalClass(typeof(PlatformDetection), nameof(PlatformDetection.IsNotX86Process))] // https://github.com/dotnet/runtime/issues/71962
public class JsonSourceGeneratorDiagnosticsTests
{
/// <summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ namespace System.Text.Json.SourceGeneration.UnitTests
[ActiveIssue("https://github.com/dotnet/runtime/issues/58226", TestPlatforms.Browser)]
[SkipOnCoreClr("https://github.com/dotnet/runtime/issues/71962", ~RuntimeConfiguration.Release)]
[SkipOnMono("https://github.com/dotnet/runtime/issues/92467")]
[ConditionalClass(typeof(PlatformDetection), nameof(PlatformDetection.IsNotX86Process))] // https://github.com/dotnet/runtime/issues/71962
public static class JsonSourceGeneratorIncrementalTests
{
[Theory]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ namespace System.Text.Json.SourceGeneration.UnitTests
[ActiveIssue("https://github.com/dotnet/runtime/issues/58226", TestPlatforms.Browser)]
[SkipOnCoreClr("https://github.com/dotnet/runtime/issues/71962", ~RuntimeConfiguration.Release)]
[SkipOnMono("https://github.com/dotnet/runtime/issues/92467")]
[ConditionalClass(typeof(PlatformDetection), nameof(PlatformDetection.IsNotX86Process))] // https://github.com/dotnet/runtime/issues/71962
public class GeneratorTests
{
[Fact]
Expand Down

0 comments on commit 5e603d5

Please sign in to comment.