@@ -1650,7 +1650,6 @@ public static void ConvertDoubleToNullableShortTest(bool useInterpreter)
16501650 }
16511651
16521652 [Theory, ClassData(typeof(CompilationTypes))]
1653- [ActiveIssue("https://github.com/dotnet/runtime/issues/13651")]
16541653 public static void ConvertDoubleToUIntTest(bool useInterpreter)
16551654 {
16561655 foreach (double value in new double[] { 0, 1, -1, double.MinValue, double.MaxValue, double.Epsilon, double.NegativeInfinity, double.PositiveInfinity, double.NaN })
@@ -1660,7 +1659,6 @@ public static void ConvertDoubleToUIntTest(bool useInterpreter)
16601659 }
16611660
16621661 [Theory, ClassData(typeof(CompilationTypes))]
1663- [ActiveIssue("https://github.com/dotnet/runtime/issues/13651")]
16641662 public static void ConvertDoubleToNullableUIntTest(bool useInterpreter)
16651663 {
16661664 foreach (double value in new double[] { 0, 1, -1, double.MinValue, double.MaxValue, double.Epsilon, double.NegativeInfinity, double.PositiveInfinity, double.NaN })
@@ -1679,7 +1677,6 @@ public static void ConvertDoubleToULongTest(bool useInterpreter)
16791677 }
16801678
16811679 [Theory, ClassData(typeof(CompilationTypes))]
1682- [ActiveIssue("https://github.com/dotnet/runtime/issues/51346", TestRuntimes.CoreCLR)]
16831680 public static void ConvertDoubleToNullableULongTest(bool useInterpreter)
16841681 {
16851682 foreach (double value in new double[] { 0, 1, -1, double.MinValue, double.MaxValue, double.Epsilon, double.NegativeInfinity, double.PositiveInfinity, double.NaN })
@@ -1905,7 +1902,6 @@ public static void ConvertNullableDoubleToNullableShortTest(bool useInterpreter)
19051902 }
19061903
19071904 [Theory, ClassData(typeof(CompilationTypes))]
1908- [ActiveIssue("https://github.com/dotnet/runtime/issues/51346", TestRuntimes.CoreCLR)]
19091905 public static void ConvertNullableDoubleToUIntTest(bool useInterpreter)
19101906 {
19111907 foreach (double? value in new double?[] { null, 0, 1, -1, double.MinValue, double.MaxValue, double.Epsilon, double.NegativeInfinity, double.PositiveInfinity, double.NaN })
@@ -1915,7 +1911,6 @@ public static void ConvertNullableDoubleToUIntTest(bool useInterpreter)
19151911 }
19161912
19171913 [Theory, ClassData(typeof(CompilationTypes))]
1918- [ActiveIssue("https://github.com/dotnet/runtime/issues/51346", TestRuntimes.CoreCLR)]
19191914 public static void ConvertNullableDoubleToNullableUIntTest(bool useInterpreter)
19201915 {
19211916 foreach (double? value in new double?[] { null, 0, 1, -1, double.MinValue, double.MaxValue, double.Epsilon, double.NegativeInfinity, double.PositiveInfinity, double.NaN })
@@ -1934,7 +1929,6 @@ public static void ConvertNullableDoubleToULongTest(bool useInterpreter)
19341929 }
19351930
19361931 [Theory, ClassData(typeof(CompilationTypes))]
1937- [ActiveIssue("https://github.com/dotnet/runtime/issues/51346", TestRuntimes.CoreCLR)]
19381932 public static void ConvertNullableDoubleToNullableULongTest(bool useInterpreter)
19391933 {
19401934 foreach (double? value in new double?[] { null, 0, 1, -1, double.MinValue, double.MaxValue, double.Epsilon, double.NegativeInfinity, double.PositiveInfinity, double.NaN })
@@ -3096,7 +3090,6 @@ public static void ConvertFloatToNullableShortTest(bool useInterpreter)
30963090 }
30973091
30983092 [Theory, ClassData(typeof(CompilationTypes))]
3099- [ActiveIssue("https://github.com/dotnet/runtime/issues/47374", TestRuntimes.CoreCLR)]
31003093 public static void ConvertFloatToUIntTest(bool useInterpreter)
31013094 {
31023095 foreach (float value in new float[] { 0, 1, -1, float.MinValue, float.MaxValue, float.Epsilon, float.NegativeInfinity, float.PositiveInfinity, float.NaN })
@@ -3106,7 +3099,6 @@ public static void ConvertFloatToUIntTest(bool useInterpreter)
31063099 }
31073100
31083101 [Theory, ClassData(typeof(CompilationTypes))]
3109- [ActiveIssue("https://github.com/dotnet/runtime/issues/47374", TestRuntimes.CoreCLR)]
31103102 public static void ConvertFloatToNullableUIntTest(bool useInterpreter)
31113103 {
31123104 foreach (float value in new float[] { 0, 1, -1, float.MinValue, float.MaxValue, float.Epsilon, float.NegativeInfinity, float.PositiveInfinity, float.NaN })
@@ -3124,9 +3116,7 @@ public static void ConvertFloatToULongTest(bool useInterpreter)
31243116 }
31253117 }
31263118
3127-
31283119 [Theory, ClassData(typeof(CompilationTypes))]
3129- [ActiveIssue("https://github.com/dotnet/runtime/issues/51346", TestRuntimes.CoreCLR)]
31303120 public static void ConvertFloatToNullableULongTest(bool useInterpreter)
31313121 {
31323122 foreach (float value in new float[] { 0, 1, -1, float.MinValue, float.MaxValue, float.Epsilon, float.NegativeInfinity, float.PositiveInfinity, float.NaN })
@@ -3352,7 +3342,6 @@ public static void ConvertNullableFloatToNullableShortTest(bool useInterpreter)
33523342 }
33533343
33543344 [Theory, ClassData(typeof(CompilationTypes))]
3355- [ActiveIssue("https://github.com/dotnet/runtime/issues/51346", TestRuntimes.CoreCLR)]
33563345 public static void ConvertNullableFloatToUIntTest(bool useInterpreter)
33573346 {
33583347 foreach (float? value in new float?[] { null, 0, 1, -1, float.MinValue, float.MaxValue, float.Epsilon, float.NegativeInfinity, float.PositiveInfinity, float.NaN })
@@ -3362,7 +3351,6 @@ public static void ConvertNullableFloatToUIntTest(bool useInterpreter)
33623351 }
33633352
33643353 [Theory, ClassData(typeof(CompilationTypes))]
3365- [ActiveIssue("https://github.com/dotnet/runtime/issues/51346", TestRuntimes.CoreCLR)]
33663354 public static void ConvertNullableFloatToNullableUIntTest(bool useInterpreter)
33673355 {
33683356 foreach (float? value in new float?[] { null, 0, 1, -1, float.MinValue, float.MaxValue, float.Epsilon, float.NegativeInfinity, float.PositiveInfinity, float.NaN })
@@ -3381,7 +3369,6 @@ public static void ConvertNullableFloatToULongTest(bool useInterpreter)
33813369 }
33823370
33833371 [Theory, ClassData(typeof(CompilationTypes))]
3384- [ActiveIssue("https://github.com/dotnet/runtime/issues/51346", TestRuntimes.CoreCLR)]
33853372 public static void ConvertNullableFloatToNullableULongTest(bool useInterpreter)
33863373 {
33873374 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