Skip to content

Commit 18dc020

Browse files
Disable tests exercising implementation-defined behavior (#51348)
1 parent 797b106 commit 18dc020

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/libraries/System.Linq.Expressions/tests/Convert/ConvertTests.cs

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1679,6 +1679,7 @@ public static void ConvertDoubleToULongTest(bool useInterpreter)
16791679
}
16801680

16811681
[Theory, ClassData(typeof(CompilationTypes))]
1682+
[ActiveIssue("https://github.com/dotnet/runtime/issues/51346", TestRuntimes.CoreCLR)]
16821683
public static void ConvertDoubleToNullableULongTest(bool useInterpreter)
16831684
{
16841685
foreach (double value in new double[] { 0, 1, -1, double.MinValue, double.MaxValue, double.Epsilon, double.NegativeInfinity, double.PositiveInfinity, double.NaN })
@@ -1904,6 +1905,7 @@ public static void ConvertNullableDoubleToNullableShortTest(bool useInterpreter)
19041905
}
19051906

19061907
[Theory, ClassData(typeof(CompilationTypes))]
1908+
[ActiveIssue("https://github.com/dotnet/runtime/issues/51346", TestRuntimes.CoreCLR)]
19071909
public static void ConvertNullableDoubleToUIntTest(bool useInterpreter)
19081910
{
19091911
foreach (double? value in new double?[] { null, 0, 1, -1, double.MinValue, double.MaxValue, double.Epsilon, double.NegativeInfinity, double.PositiveInfinity, double.NaN })
@@ -1913,6 +1915,7 @@ public static void ConvertNullableDoubleToUIntTest(bool useInterpreter)
19131915
}
19141916

19151917
[Theory, ClassData(typeof(CompilationTypes))]
1918+
[ActiveIssue("https://github.com/dotnet/runtime/issues/51346", TestRuntimes.CoreCLR)]
19161919
public static void ConvertNullableDoubleToNullableUIntTest(bool useInterpreter)
19171920
{
19181921
foreach (double? value in new double?[] { null, 0, 1, -1, double.MinValue, double.MaxValue, double.Epsilon, double.NegativeInfinity, double.PositiveInfinity, double.NaN })
@@ -1931,6 +1934,7 @@ public static void ConvertNullableDoubleToULongTest(bool useInterpreter)
19311934
}
19321935

19331936
[Theory, ClassData(typeof(CompilationTypes))]
1937+
[ActiveIssue("https://github.com/dotnet/runtime/issues/51346", TestRuntimes.CoreCLR)]
19341938
public static void ConvertNullableDoubleToNullableULongTest(bool useInterpreter)
19351939
{
19361940
foreach (double? value in new double?[] { null, 0, 1, -1, double.MinValue, double.MaxValue, double.Epsilon, double.NegativeInfinity, double.PositiveInfinity, double.NaN })
@@ -3120,7 +3124,9 @@ public static void ConvertFloatToULongTest(bool useInterpreter)
31203124
}
31213125
}
31223126

3127+
31233128
[Theory, ClassData(typeof(CompilationTypes))]
3129+
[ActiveIssue("https://github.com/dotnet/runtime/issues/51346", TestRuntimes.CoreCLR)]
31243130
public static void ConvertFloatToNullableULongTest(bool useInterpreter)
31253131
{
31263132
foreach (float value in new float[] { 0, 1, -1, float.MinValue, float.MaxValue, float.Epsilon, float.NegativeInfinity, float.PositiveInfinity, float.NaN })
@@ -3346,6 +3352,7 @@ public static void ConvertNullableFloatToNullableShortTest(bool useInterpreter)
33463352
}
33473353

33483354
[Theory, ClassData(typeof(CompilationTypes))]
3355+
[ActiveIssue("https://github.com/dotnet/runtime/issues/51346", TestRuntimes.CoreCLR)]
33493356
public static void ConvertNullableFloatToUIntTest(bool useInterpreter)
33503357
{
33513358
foreach (float? value in new float?[] { null, 0, 1, -1, float.MinValue, float.MaxValue, float.Epsilon, float.NegativeInfinity, float.PositiveInfinity, float.NaN })
@@ -3355,6 +3362,7 @@ public static void ConvertNullableFloatToUIntTest(bool useInterpreter)
33553362
}
33563363

33573364
[Theory, ClassData(typeof(CompilationTypes))]
3365+
[ActiveIssue("https://github.com/dotnet/runtime/issues/51346", TestRuntimes.CoreCLR)]
33583366
public static void ConvertNullableFloatToNullableUIntTest(bool useInterpreter)
33593367
{
33603368
foreach (float? value in new float?[] { null, 0, 1, -1, float.MinValue, float.MaxValue, float.Epsilon, float.NegativeInfinity, float.PositiveInfinity, float.NaN })
@@ -3373,6 +3381,7 @@ public static void ConvertNullableFloatToULongTest(bool useInterpreter)
33733381
}
33743382

33753383
[Theory, ClassData(typeof(CompilationTypes))]
3384+
[ActiveIssue("https://github.com/dotnet/runtime/issues/51346", TestRuntimes.CoreCLR)]
33763385
public static void ConvertNullableFloatToNullableULongTest(bool useInterpreter)
33773386
{
33783387
foreach (float? value in new float?[] { null, 0, 1, -1, float.MinValue, float.MaxValue, float.Epsilon, float.NegativeInfinity, float.PositiveInfinity, float.NaN })

0 commit comments

Comments
 (0)