@@ -958,8 +958,10 @@ private void TestToString<T>(string format, IFormatProvider provider) where T :
958
958
[ Fact ]
959
959
public void AdditionInt64 ( ) { TestAddition < long > ( ) ; }
960
960
[ Fact ]
961
+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/60347" , typeof ( PlatformDetection ) , nameof ( PlatformDetection . IsMonoRuntime ) , nameof ( PlatformDetection . IsX86Process ) ) ]
961
962
public void AdditionSingle ( ) { TestAddition < float > ( ) ; }
962
963
[ Fact ]
964
+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/60347" , typeof ( PlatformDetection ) , nameof ( PlatformDetection . IsMonoRuntime ) , nameof ( PlatformDetection . IsX86Process ) ) ]
963
965
public void AdditionDouble ( ) { TestAddition < double > ( ) ; }
964
966
private void TestAddition < T > ( ) where T : struct
965
967
{
@@ -1023,8 +1025,10 @@ private void TestAdditionOverflow<T>() where T : struct
1023
1025
[ Fact ]
1024
1026
public void SubtractionInt64 ( ) { TestSubtraction < long > ( ) ; }
1025
1027
[ Fact ]
1028
+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/60347" , typeof ( PlatformDetection ) , nameof ( PlatformDetection . IsMonoRuntime ) , nameof ( PlatformDetection . IsX86Process ) ) ]
1026
1029
public void SubtractionSingle ( ) { TestSubtraction < float > ( ) ; }
1027
1030
[ Fact ]
1031
+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/60347" , typeof ( PlatformDetection ) , nameof ( PlatformDetection . IsMonoRuntime ) , nameof ( PlatformDetection . IsX86Process ) ) ]
1028
1032
public void SubtractionDouble ( ) { TestSubtraction < double > ( ) ; }
1029
1033
private void TestSubtraction < T > ( ) where T : struct
1030
1034
{
@@ -1088,8 +1092,10 @@ private void TestSubtractionOverflow<T>() where T : struct
1088
1092
[ Fact ]
1089
1093
public void MultiplicationInt64 ( ) { TestMultiplication < long > ( ) ; }
1090
1094
[ Fact ]
1095
+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/60347" , typeof ( PlatformDetection ) , nameof ( PlatformDetection . IsMonoRuntime ) , nameof ( PlatformDetection . IsX86Process ) ) ]
1091
1096
public void MultiplicationSingle ( ) { TestMultiplication < float > ( ) ; }
1092
1097
[ Fact ]
1098
+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/60347" , typeof ( PlatformDetection ) , nameof ( PlatformDetection . IsMonoRuntime ) , nameof ( PlatformDetection . IsX86Process ) ) ]
1093
1099
public void MultiplicationDouble ( ) { TestMultiplication < double > ( ) ; }
1094
1100
private void TestMultiplication < T > ( ) where T : struct
1095
1101
{
@@ -1122,8 +1128,10 @@ private void TestMultiplication<T>() where T : struct
1122
1128
[ Fact ]
1123
1129
public void MultiplicationWithScalarInt64 ( ) { TestMultiplicationWithScalar < long > ( ) ; }
1124
1130
[ Fact ]
1131
+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/60347" , typeof ( PlatformDetection ) , nameof ( PlatformDetection . IsMonoRuntime ) , nameof ( PlatformDetection . IsX86Process ) ) ]
1125
1132
public void MultiplicationWithScalarSingle ( ) { TestMultiplicationWithScalar < float > ( ) ; }
1126
1133
[ Fact ]
1134
+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/60347" , typeof ( PlatformDetection ) , nameof ( PlatformDetection . IsMonoRuntime ) , nameof ( PlatformDetection . IsX86Process ) ) ]
1127
1135
public void MultiplicationWithScalarDouble ( ) { TestMultiplicationWithScalar < double > ( ) ; }
1128
1136
private void TestMultiplicationWithScalar < T > ( ) where T : struct
1129
1137
{
@@ -1164,8 +1172,10 @@ private void TestMultiplicationWithScalar<T>() where T : struct
1164
1172
[ Fact ]
1165
1173
public void DivisionInt64 ( ) { TestDivision < long > ( ) ; }
1166
1174
[ Fact ]
1175
+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/60347" , typeof ( PlatformDetection ) , nameof ( PlatformDetection . IsMonoRuntime ) , nameof ( PlatformDetection . IsX86Process ) ) ]
1167
1176
public void DivisionSingle ( ) { TestDivision < float > ( ) ; }
1168
1177
[ Fact ]
1178
+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/60347" , typeof ( PlatformDetection ) , nameof ( PlatformDetection . IsMonoRuntime ) , nameof ( PlatformDetection . IsX86Process ) ) ]
1169
1179
public void DivisionDouble ( ) { TestDivision < double > ( ) ; }
1170
1180
private void TestDivision < T > ( ) where T : struct
1171
1181
{
@@ -1224,8 +1234,10 @@ private void TestDivisionByZeroException<T>() where T : struct
1224
1234
[ Fact ]
1225
1235
public void UnaryMinusInt64 ( ) { TestUnaryMinus < long > ( ) ; }
1226
1236
[ Fact ]
1237
+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/60347" , typeof ( PlatformDetection ) , nameof ( PlatformDetection . IsMonoRuntime ) , nameof ( PlatformDetection . IsX86Process ) ) ]
1227
1238
public void UnaryMinusSingle ( ) { TestUnaryMinus < float > ( ) ; }
1228
1239
[ Fact ]
1240
+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/60347" , typeof ( PlatformDetection ) , nameof ( PlatformDetection . IsMonoRuntime ) , nameof ( PlatformDetection . IsX86Process ) ) ]
1229
1241
public void UnaryMinusDouble ( ) { TestUnaryMinus < double > ( ) ; }
1230
1242
private void TestUnaryMinus < T > ( ) where T : struct
1231
1243
{
@@ -1424,8 +1436,10 @@ private void TestBitwiseAndNot<T>() where T : struct
1424
1436
[ Fact ]
1425
1437
public void VectorGreaterThanInt64 ( ) { TestVectorGreaterThan < long > ( ) ; }
1426
1438
[ Fact ]
1439
+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/60347" , typeof ( PlatformDetection ) , nameof ( PlatformDetection . IsMonoRuntime ) , nameof ( PlatformDetection . IsX86Process ) ) ]
1427
1440
public void VectorGreaterThanSingle ( ) { TestVectorGreaterThan < float > ( ) ; }
1428
1441
[ Fact ]
1442
+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/60347" , typeof ( PlatformDetection ) , nameof ( PlatformDetection . IsMonoRuntime ) , nameof ( PlatformDetection . IsX86Process ) ) ]
1429
1443
public void VectorGreaterThanDouble ( ) { TestVectorGreaterThan < double > ( ) ; }
1430
1444
private void TestVectorGreaterThan < T > ( ) where T : struct
1431
1445
{
@@ -1461,8 +1475,10 @@ private void TestVectorGreaterThan<T>() where T : struct
1461
1475
[ Fact ]
1462
1476
public void GreaterThanOrEqualInt64 ( ) { TestVectorGreaterThanOrEqual < long > ( ) ; }
1463
1477
[ Fact ]
1478
+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/60347" , typeof ( PlatformDetection ) , nameof ( PlatformDetection . IsMonoRuntime ) , nameof ( PlatformDetection . IsX86Process ) ) ]
1464
1479
public void GreaterThanOrEqualSingle ( ) { TestVectorGreaterThanOrEqual < float > ( ) ; }
1465
1480
[ Fact ]
1481
+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/60347" , typeof ( PlatformDetection ) , nameof ( PlatformDetection . IsMonoRuntime ) , nameof ( PlatformDetection . IsX86Process ) ) ]
1466
1482
public void GreaterThanOrEqualDouble ( ) { TestVectorGreaterThanOrEqual < double > ( ) ; }
1467
1483
private void TestVectorGreaterThanOrEqual < T > ( ) where T : struct
1468
1484
{
@@ -1714,8 +1730,10 @@ private void TestVectorGreaterThanOrEqualAll<T>() where T : struct
1714
1730
[ Fact ]
1715
1731
public void LessThanInt64 ( ) { TestVectorLessThan < long > ( ) ; }
1716
1732
[ Fact ]
1733
+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/60347" , typeof ( PlatformDetection ) , nameof ( PlatformDetection . IsMonoRuntime ) , nameof ( PlatformDetection . IsX86Process ) ) ]
1717
1734
public void LessThanSingle ( ) { TestVectorLessThan < float > ( ) ; }
1718
1735
[ Fact ]
1736
+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/60347" , typeof ( PlatformDetection ) , nameof ( PlatformDetection . IsMonoRuntime ) , nameof ( PlatformDetection . IsX86Process ) ) ]
1719
1737
public void LessThanDouble ( ) { TestVectorLessThan < double > ( ) ; }
1720
1738
private void TestVectorLessThan < T > ( ) where T : struct
1721
1739
{
@@ -1751,8 +1769,10 @@ private void TestVectorLessThan<T>() where T : struct
1751
1769
[ Fact ]
1752
1770
public void LessThanOrEqualInt64 ( ) { TestVectorLessThanOrEqual < long > ( ) ; }
1753
1771
[ Fact ]
1772
+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/60347" , typeof ( PlatformDetection ) , nameof ( PlatformDetection . IsMonoRuntime ) , nameof ( PlatformDetection . IsX86Process ) ) ]
1754
1773
public void LessThanOrEqualSingle ( ) { TestVectorLessThanOrEqual < float > ( ) ; }
1755
1774
[ Fact ]
1775
+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/60347" , typeof ( PlatformDetection ) , nameof ( PlatformDetection . IsMonoRuntime ) , nameof ( PlatformDetection . IsX86Process ) ) ]
1756
1776
public void LessThanOrEqualDouble ( ) { TestVectorLessThanOrEqual < double > ( ) ; }
1757
1777
private void TestVectorLessThanOrEqual < T > ( ) where T : struct
1758
1778
{
@@ -1788,8 +1808,10 @@ private void TestVectorLessThanOrEqual<T>() where T : struct
1788
1808
[ Fact ]
1789
1809
public void LessThanAnyInt64 ( ) { TestVectorLessThanAny < long > ( ) ; }
1790
1810
[ Fact ]
1811
+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/60347" , typeof ( PlatformDetection ) , nameof ( PlatformDetection . IsMonoRuntime ) , nameof ( PlatformDetection . IsX86Process ) ) ]
1791
1812
public void LessThanAnySingle ( ) { TestVectorLessThanAny < float > ( ) ; }
1792
1813
[ Fact ]
1814
+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/60347" , typeof ( PlatformDetection ) , nameof ( PlatformDetection . IsMonoRuntime ) , nameof ( PlatformDetection . IsX86Process ) ) ]
1793
1815
public void LessThanAnyDouble ( ) { TestVectorLessThanAny < double > ( ) ; }
1794
1816
private void TestVectorLessThanAny < T > ( ) where T : struct
1795
1817
{
@@ -2114,8 +2136,10 @@ private void TestVectorEqualsAll<T>() where T : struct
2114
2136
[ Fact ]
2115
2137
public void ConditionalSelectInt64 ( ) { TestConditionalSelect < long > ( ) ; }
2116
2138
[ Fact ]
2139
+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/60347" , typeof ( PlatformDetection ) , nameof ( PlatformDetection . IsMonoRuntime ) , nameof ( PlatformDetection . IsX86Process ) ) ]
2117
2140
public void ConditionalSelectSingle ( ) { TestConditionalSelect < float > ( ) ; }
2118
2141
[ Fact ]
2142
+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/60347" , typeof ( PlatformDetection ) , nameof ( PlatformDetection . IsMonoRuntime ) , nameof ( PlatformDetection . IsX86Process ) ) ]
2119
2143
public void ConditionalSelectDouble ( ) { TestConditionalSelect < double > ( ) ; }
2120
2144
private void TestConditionalSelect < T > ( ) where T : struct
2121
2145
{
@@ -2166,8 +2190,10 @@ private void TestConditionalSelect<T>() where T : struct
2166
2190
[ Fact ]
2167
2191
public void DotProductInt64 ( ) { TestDotProduct < long > ( ) ; }
2168
2192
[ Fact ]
2193
+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/60347" , typeof ( PlatformDetection ) , nameof ( PlatformDetection . IsMonoRuntime ) , nameof ( PlatformDetection . IsX86Process ) ) ]
2169
2194
public void DotProductSingle ( ) { TestDotProduct < float > ( ) ; }
2170
2195
[ Fact ]
2196
+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/60347" , typeof ( PlatformDetection ) , nameof ( PlatformDetection . IsMonoRuntime ) , nameof ( PlatformDetection . IsX86Process ) ) ]
2171
2197
public void DotProductDouble ( ) { TestDotProduct < double > ( ) ; }
2172
2198
private void TestDotProduct < T > ( ) where T : struct
2173
2199
{
@@ -2202,8 +2228,10 @@ private void TestDotProduct<T>() where T : struct
2202
2228
[ Fact ]
2203
2229
public void MaxInt64 ( ) { TestMax < long > ( ) ; }
2204
2230
[ Fact ]
2231
+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/60347" , typeof ( PlatformDetection ) , nameof ( PlatformDetection . IsMonoRuntime ) , nameof ( PlatformDetection . IsX86Process ) ) ]
2205
2232
public void MaxSingle ( ) { TestMax < float > ( ) ; }
2206
2233
[ Fact ]
2234
+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/60347" , typeof ( PlatformDetection ) , nameof ( PlatformDetection . IsMonoRuntime ) , nameof ( PlatformDetection . IsX86Process ) ) ]
2207
2235
public void MaxDouble ( ) { TestMax < double > ( ) ; }
2208
2236
private void TestMax < T > ( ) where T : struct
2209
2237
{
@@ -2238,8 +2266,10 @@ private void TestMax<T>() where T : struct
2238
2266
[ Fact ]
2239
2267
public void MinInt64 ( ) { TestMin < long > ( ) ; }
2240
2268
[ Fact ]
2269
+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/60347" , typeof ( PlatformDetection ) , nameof ( PlatformDetection . IsMonoRuntime ) , nameof ( PlatformDetection . IsX86Process ) ) ]
2241
2270
public void MinSingle ( ) { TestMin < float > ( ) ; }
2242
2271
[ Fact ]
2272
+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/60347" , typeof ( PlatformDetection ) , nameof ( PlatformDetection . IsMonoRuntime ) , nameof ( PlatformDetection . IsX86Process ) ) ]
2243
2273
public void MinDouble ( ) { TestMin < double > ( ) ; }
2244
2274
private void TestMin < T > ( ) where T : struct
2245
2275
{
@@ -2274,8 +2304,10 @@ private void TestMin<T>() where T : struct
2274
2304
[ Fact ]
2275
2305
public void SquareRootInt64 ( ) { TestSquareRoot < long > ( - 1 ) ; }
2276
2306
[ Fact ]
2307
+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/60347" , typeof ( PlatformDetection ) , nameof ( PlatformDetection . IsMonoRuntime ) , nameof ( PlatformDetection . IsX86Process ) ) ]
2277
2308
public void SquareRootSingle ( ) { TestSquareRoot < float > ( 6 ) ; }
2278
2309
[ Fact ]
2310
+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/60347" , typeof ( PlatformDetection ) , nameof ( PlatformDetection . IsMonoRuntime ) , nameof ( PlatformDetection . IsX86Process ) ) ]
2279
2311
public void SquareRootDouble ( ) { TestSquareRoot < double > ( 15 ) ; }
2280
2312
private void TestSquareRoot < T > ( int precision = - 1 ) where T : struct , IEquatable < T >
2281
2313
{
@@ -2368,8 +2400,10 @@ public void FloorDouble()
2368
2400
[ Fact ]
2369
2401
public void AbsInt64 ( ) { TestAbs < long > ( ) ; }
2370
2402
[ Fact ]
2403
+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/60347" , typeof ( PlatformDetection ) , nameof ( PlatformDetection . IsMonoRuntime ) , nameof ( PlatformDetection . IsX86Process ) ) ]
2371
2404
public void AbsSingle ( ) { TestAbs < float > ( ) ; }
2372
2405
[ Fact ]
2406
+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/60347" , typeof ( PlatformDetection ) , nameof ( PlatformDetection . IsMonoRuntime ) , nameof ( PlatformDetection . IsX86Process ) ) ]
2373
2407
public void AbsDouble ( ) { TestAbs < double > ( ) ; }
2374
2408
private void TestAbs < T > ( ) where T : struct
2375
2409
{
@@ -2406,8 +2440,10 @@ private void TestAbs<T>() where T : struct
2406
2440
[ Fact ]
2407
2441
public void MultiplicationReflectionInt64 ( ) { TestMultiplicationReflection < long > ( ) ; }
2408
2442
[ Fact ]
2443
+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/60347" , typeof ( PlatformDetection ) , nameof ( PlatformDetection . IsMonoRuntime ) , nameof ( PlatformDetection . IsX86Process ) ) ]
2409
2444
public void MultiplicationReflectionSingle ( ) { TestMultiplicationReflection < float > ( ) ; }
2410
2445
[ Fact ]
2446
+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/60347" , typeof ( PlatformDetection ) , nameof ( PlatformDetection . IsMonoRuntime ) , nameof ( PlatformDetection . IsX86Process ) ) ]
2411
2447
public void MultiplicationReflectionDouble ( ) { TestMultiplicationReflection < double > ( ) ; }
2412
2448
private void TestMultiplicationReflection < T > ( ) where T : struct
2413
2449
{
@@ -2443,8 +2479,10 @@ private void TestMultiplicationReflection<T>() where T : struct
2443
2479
[ Fact ]
2444
2480
public void AdditionReflectionInt64 ( ) { TestAdditionReflection < long > ( ) ; }
2445
2481
[ Fact ]
2482
+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/60347" , typeof ( PlatformDetection ) , nameof ( PlatformDetection . IsMonoRuntime ) , nameof ( PlatformDetection . IsX86Process ) ) ]
2446
2483
public void AdditionReflectionSingle ( ) { TestAdditionReflection < float > ( ) ; }
2447
2484
[ Fact ]
2485
+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/60347" , typeof ( PlatformDetection ) , nameof ( PlatformDetection . IsMonoRuntime ) , nameof ( PlatformDetection . IsX86Process ) ) ]
2448
2486
public void AdditionReflectionDouble ( ) { TestAdditionReflection < double > ( ) ; }
2449
2487
private void TestAdditionReflection < T > ( ) where T : struct
2450
2488
{
@@ -2480,8 +2518,10 @@ private void TestAdditionReflection<T>() where T : struct
2480
2518
[ Fact ]
2481
2519
public void DivisionReflectionInt64 ( ) { TestDivisionReflection < long > ( ) ; }
2482
2520
[ Fact ]
2521
+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/60347" , typeof ( PlatformDetection ) , nameof ( PlatformDetection . IsMonoRuntime ) , nameof ( PlatformDetection . IsX86Process ) ) ]
2483
2522
public void DivisionReflectionSingle ( ) { TestDivisionReflection < float > ( ) ; }
2484
2523
[ Fact ]
2524
+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/60347" , typeof ( PlatformDetection ) , nameof ( PlatformDetection . IsMonoRuntime ) , nameof ( PlatformDetection . IsX86Process ) ) ]
2485
2525
public void DivisionReflectionDouble ( ) { TestDivisionReflection < double > ( ) ; }
2486
2526
private void TestDivisionReflection < T > ( ) where T : struct
2487
2527
{
0 commit comments