Skip to content

Commit

Permalink
Skip generic math tests on Mono WASM due to dotnet#54910
Browse files Browse the repository at this point in the history
  • Loading branch information
tannergooding committed Jul 2, 2021
1 parent 5f60387 commit a9d2daf
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/libraries/System.Runtime/tests/System/GenericMathTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -55,15 +55,19 @@ public abstract class GenericMathTests<TSelf>
where TSelf : INumber<TSelf>
{
[Fact]
[SkipOnMono("https://github.com/dotnet/runtime/issues/54910", TestPlatforms.Browser)]
public abstract void AverageTest();

[Fact]
[SkipOnMono("https://github.com/dotnet/runtime/issues/54910", TestPlatforms.Browser)]
public abstract void StandardDeviationTest();

[Fact]
[SkipOnMono("https://github.com/dotnet/runtime/issues/54910", TestPlatforms.Browser)]
public abstract void SumTest();

[Fact]
[SkipOnMono("https://github.com/dotnet/runtime/issues/54910", TestPlatforms.Browser)]
public abstract void SumInt32Test();
}
}

0 comments on commit a9d2daf

Please sign in to comment.