From a9d2dafa8a67ec0cc29a0d55c166043fb0e54a96 Mon Sep 17 00:00:00 2001 From: Tanner Gooding Date: Thu, 1 Jul 2021 17:35:52 -0700 Subject: [PATCH] Skip generic math tests on Mono WASM due to https://github.com/dotnet/runtime/issues/54910 --- src/libraries/System.Runtime/tests/System/GenericMathTests.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/libraries/System.Runtime/tests/System/GenericMathTests.cs b/src/libraries/System.Runtime/tests/System/GenericMathTests.cs index 46a2a29cfdf44..176fe1a231d66 100644 --- a/src/libraries/System.Runtime/tests/System/GenericMathTests.cs +++ b/src/libraries/System.Runtime/tests/System/GenericMathTests.cs @@ -55,15 +55,19 @@ public abstract class GenericMathTests where TSelf : INumber { [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(); } }