Skip to content

Commit

Permalink
Skip the Exp test for Vector128/256/512 on Mono due to #97176
Browse files Browse the repository at this point in the history
  • Loading branch information
tannergooding committed Jan 18, 2024
1 parent 7b04a92 commit 398c78e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4689,6 +4689,7 @@ private static void TestGetOne<T>()

[Theory]
[MemberData(nameof(VectorTestMemberData.ExpDouble), MemberType = typeof(VectorTestMemberData))]
[SkipOnMono("https://github.com/dotnet/runtime/issues/97176")]
public void ExpDoubleTest(double value, double expectedResult, double variance)
{
Vector128<double> actualResult = Vector128.Exp(Vector128.Create(value));
Expand All @@ -4697,6 +4698,7 @@ public void ExpDoubleTest(double value, double expectedResult, double variance)

[Theory]
[MemberData(nameof(VectorTestMemberData.ExpSingle), MemberType = typeof(VectorTestMemberData))]
[SkipOnMono("https://github.com/dotnet/runtime/issues/97176")]
public void ExpSingleTest(float value, float expectedResult, float variance)
{
Vector128<float> actualResult = Vector128.Exp(Vector128.Create(value));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5704,6 +5704,7 @@ private static void TestGetOne<T>()

[Theory]
[MemberData(nameof(VectorTestMemberData.ExpDouble), MemberType = typeof(VectorTestMemberData))]
[SkipOnMono("https://github.com/dotnet/runtime/issues/97176")]
public void ExpDoubleTest(double value, double expectedResult, double variance)
{
Vector256<double> actualResult = Vector256.Exp(Vector256.Create(value));
Expand All @@ -5712,6 +5713,7 @@ public void ExpDoubleTest(double value, double expectedResult, double variance)

[Theory]
[MemberData(nameof(VectorTestMemberData.ExpSingle), MemberType = typeof(VectorTestMemberData))]
[SkipOnMono("https://github.com/dotnet/runtime/issues/97176")]
public void ExpSingleTest(float value, float expectedResult, float variance)
{
Vector256<float> actualResult = Vector256.Exp(Vector256.Create(value));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5136,6 +5136,7 @@ private static void TestIsNotSupported<T>()

[Theory]
[MemberData(nameof(VectorTestMemberData.ExpDouble), MemberType = typeof(VectorTestMemberData))]
[SkipOnMono("https://github.com/dotnet/runtime/issues/97176")]
public void ExpDoubleTest(double value, double expectedResult, double variance)
{
Vector512<double> actualResult = Vector512.Exp(Vector512.Create(value));
Expand All @@ -5144,6 +5145,7 @@ public void ExpDoubleTest(double value, double expectedResult, double variance)

[Theory]
[MemberData(nameof(VectorTestMemberData.ExpSingle), MemberType = typeof(VectorTestMemberData))]
[SkipOnMono("https://github.com/dotnet/runtime/issues/97176")]
public void ExpSingleTest(float value, float expectedResult, float variance)
{
Vector512<float> actualResult = Vector512.Exp(Vector512.Create(value));
Expand Down

0 comments on commit 398c78e

Please sign in to comment.