Skip to content

Commit c9ed92f

Browse files
committed
Disable tests
``` src/libraries/System.Numerics.Vectors/tests/Matrix3x2Tests.cs #36587 Matrix3x2CreateRotationCenterTest() #36587 Matrix3x2CreateScaleCenterTest1() #36587 Matrix3x2CreateScaleCenterTest3() src/libraries/System.Numerics.Vectors/tests/Matrix4x4Tests.cs #36586 Matrix4x4CreateFromAxisAngleTest() ```
1 parent 7ee1f4d commit c9ed92f

File tree

3 files changed

+5
-0
lines changed

3 files changed

+5
-0
lines changed

src/libraries/System.Numerics.Vectors/tests/GenericVectorTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3031,6 +3031,7 @@ public void NarrowInt64()
30313031
}
30323032

30333033
[Fact]
3034+
[SkipOnCoreClr("https://github.com/dotnet/runtime/issues/36614", RuntimeTestModes.JitStress)]
30343035
public void NarrowDouble()
30353036
{
30363037
double[] source1 = GenerateRandomValuesForVector<double>();

src/libraries/System.Numerics.Vectors/tests/Matrix3x2Tests.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -187,6 +187,7 @@ public void Matrix3x2CreateRotationTest()
187187

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

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

745747
// A test for CreateScale (float, float, Vector2f)
746748
[Fact]
749+
[SkipOnCoreClr("https://github.com/dotnet/runtime/issues/36587", RuntimeTestModes.JitStress)]
747750
public void Matrix3x2CreateScaleCenterTest3()
748751
{
749752
Vector2 scale = new Vector2(3, 4);

src/libraries/System.Numerics.Vectors/tests/Matrix4x4Tests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -500,6 +500,7 @@ public void Matrix4x4CreateRotationYCenterTest()
500500

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

0 commit comments

Comments
 (0)