Skip to content

Commit

Permalink
Disable tests
Browse files Browse the repository at this point in the history
```
src/libraries/System.Numerics.Vectors/tests/Matrix3x2Tests.cs
dotnet#36587
Matrix3x2CreateRotationCenterTest()

dotnet#36587
Matrix3x2CreateScaleCenterTest1()

dotnet#36587
Matrix3x2CreateScaleCenterTest3()

src/libraries/System.Numerics.Vectors/tests/Matrix4x4Tests.cs
dotnet#36586
Matrix4x4CreateFromAxisAngleTest()
```
  • Loading branch information
BruceForstall committed Jun 11, 2020
1 parent 7ee1f4d commit c9ed92f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3031,6 +3031,7 @@ public void NarrowInt64()
}

[Fact]
[SkipOnCoreClr("https://github.com/dotnet/runtime/issues/36614", RuntimeTestModes.JitStress)]
public void NarrowDouble()
{
double[] source1 = GenerateRandomValuesForVector<double>();
Expand Down
3 changes: 3 additions & 0 deletions src/libraries/System.Numerics.Vectors/tests/Matrix3x2Tests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,7 @@ public void Matrix3x2CreateRotationTest()

// A test for CreateRotation (float, Vector2f)
[Fact]
[SkipOnCoreClr("https://github.com/dotnet/runtime/issues/36587", RuntimeTestModes.JitStress)]
public void Matrix3x2CreateRotationCenterTest()
{
float radians = MathHelper.ToRadians(30.0f);
Expand Down Expand Up @@ -685,6 +686,7 @@ public void Matrix3x2CreateScaleTest1()

// A test for CreateScale (Vector2f, Vector2f)
[Fact]
[SkipOnCoreClr("https://github.com/dotnet/runtime/issues/36587", RuntimeTestModes.JitStress)]
public void Matrix3x2CreateScaleCenterTest1()
{
Vector2 scale = new Vector2(3, 4);
Expand Down Expand Up @@ -744,6 +746,7 @@ public void Matrix3x2CreateScaleTest3()

// A test for CreateScale (float, float, Vector2f)
[Fact]
[SkipOnCoreClr("https://github.com/dotnet/runtime/issues/36587", RuntimeTestModes.JitStress)]
public void Matrix3x2CreateScaleCenterTest3()
{
Vector2 scale = new Vector2(3, 4);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -500,6 +500,7 @@ public void Matrix4x4CreateRotationYCenterTest()

// A test for CreateFromAxisAngle(Vector3f,float)
[Fact]
[SkipOnCoreClr("https://github.com/dotnet/runtime/issues/36586", RuntimeTestModes.JitStress)]
public void Matrix4x4CreateFromAxisAngleTest()
{
float radians = MathHelper.ToRadians(-30.0f);
Expand Down

0 comments on commit c9ed92f

Please sign in to comment.