Skip to content

Commit

Permalink
dotnet#37093 disable Reciprocal test only for Android x86
Browse files Browse the repository at this point in the history
  • Loading branch information
mkhamoyan committed Jul 1, 2022
1 parent 4935319 commit 52b9ca4
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/libraries/System.Runtime.Numerics/tests/ComplexTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1302,12 +1302,11 @@ private static void VerifyPow_Complex_Complex(double realValue, double imaginary
VerifyRealImaginaryProperties(result, expectedReal, expectedImaginary);
}

[Theory]
[ConditionalTheory(typeof(PlatformDetection), nameof(PlatformDetection.IsNotAndroidX86))] // disabled on Android x86, see https://github.com/dotnet/runtime/issues/37093
[MemberData(nameof(Boundaries_2_TestData))]
[MemberData(nameof(Primitives_2_TestData))]
[MemberData(nameof(SmallRandom_2_TestData))]
[MemberData(nameof(Invalid_2_TestData))]
[ActiveIssue("https://github.com/dotnet/runtime/issues/37093", TestPlatforms.Android)]
public static void Reciprocal(double real, double imaginary)
{
var complex = new Complex(real, imaginary);
Expand Down

0 comments on commit 52b9ca4

Please sign in to comment.