diff --git a/src/coreclr/tests/issues.targets b/src/coreclr/tests/issues.targets
index ec07afb575c5a9..ffda2b87c40b62 100644
--- a/src/coreclr/tests/issues.targets
+++ b/src/coreclr/tests/issues.targets
@@ -299,15 +299,9 @@
needs triage
-
- https://github.com/dotnet/runtime/issues/36418
-
https://github.com/dotnet/runtime/issues/12216
-
- https://github.com/dotnet/runtime/issues/13355
-
@@ -987,73 +981,6 @@
-
-
-
- https://github.com/dotnet/runtime/issues/37883
-
-
- https://github.com/dotnet/runtime/issues/37883
-
-
- https://github.com/dotnet/runtime/issues/37883
-
-
- https://github.com/dotnet/runtime/issues/37883
-
-
- https://github.com/dotnet/runtime/issues/37883
-
-
- https://github.com/dotnet/runtime/issues/37883
-
-
- https://github.com/dotnet/runtime/issues/37883
-
-
- https://github.com/dotnet/runtime/issues/37883
-
-
- https://github.com/dotnet/runtime/issues/37883
-
-
- https://github.com/dotnet/runtime/issues/37883
-
-
- https://github.com/dotnet/runtime/issues/37883
-
-
- https://github.com/dotnet/runtime/issues/37883
-
-
- https://github.com/dotnet/runtime/issues/37883
-
-
- https://github.com/dotnet/runtime/issues/37883
-
-
- https://github.com/dotnet/runtime/issues/37883
-
-
- https://github.com/dotnet/runtime/issues/37883
-
-
- https://github.com/dotnet/runtime/issues/37883
-
-
- https://github.com/dotnet/runtime/issues/37883
-
-
- https://github.com/dotnet/runtime/issues/37883
-
-
- https://github.com/dotnet/runtime/issues/37883
-
-
- https://github.com/dotnet/runtime/issues/37883
-
-
-
diff --git a/src/coreclr/tests/src/JIT/Directed/StructABI/structreturn.cs b/src/coreclr/tests/src/JIT/Directed/StructABI/structreturn.cs
index 7b8b9492e6e408..0ee8b9b83b1550 100644
--- a/src/coreclr/tests/src/JIT/Directed/StructABI/structreturn.cs
+++ b/src/coreclr/tests/src/JIT/Directed/StructABI/structreturn.cs
@@ -1219,27 +1219,26 @@ static Vector ReturnVectorT() where T : struct
[MethodImpl(MethodImplOptions.NoInlining)]
static Vector ReturnVectorTWithMerge(int v, T init1, T init2, T init3, T init4) where T : struct
{
- // issue https://github.com/dotnet/runtime/issues/37341
- // if (v == 0)
- // {
- // return new Vector();
- // }
- // else if (v == 1)
- // {
- // return new Vector(init1);
- // }
- // else if (v == 2)
- // {
- // return new Vector(init2);
- // }
- // else if (v == 3)
- // {
- // return new Vector(init3);
- // }
- // else
- // {
- // return new Vector(init4);
- // }
+ if (v == 0)
+ {
+ return new Vector();
+ }
+ else if (v == 1)
+ {
+ return new Vector(init1);
+ }
+ else if (v == 2)
+ {
+ return new Vector(init2);
+ }
+ else if (v == 3)
+ {
+ return new Vector(init3);
+ }
+ else
+ {
+ return new Vector(init4);
+ }
return new Vector();
}
@@ -1374,8 +1373,6 @@ static void TestReturnVectorT()
try
{
var a = ReturnVectorT2(new Vector4(1));
- // Delete WriteLine when https://github.com/dotnet/runtime/issues/37506 is fixed.
- Console.WriteLine(a.ToString());
Debug.Assert(false, "unreachable");
}
catch (System.NotSupportedException)
@@ -1384,8 +1381,6 @@ static void TestReturnVectorT()
try
{
var a = ReturnVectorT2>(new VectorTWrapperWrapper());
- // Delete WriteLine when https://github.com/dotnet/runtime/issues/37506 is fixed.
- Console.WriteLine(a.ToString());
Debug.Assert(false, "unreachable");
}
catch (System.NotSupportedException)
@@ -1398,7 +1393,6 @@ static void TestReturnVectorT()
ReturnVectorTWithMerge(1, 0.0, 0.0, 0.0, 0.0);
ReturnVectorTWithMerge(2, 0, 0, 0, 0);
ReturnVectorTWithMerge(3, 0, 0, 0, 0);
- ReturnVectorTWithMerge>(3, new Vector(0), new Vector(0), new Vector(0), new Vector(0));
ReturnVectorShortWrapper();
ReturnVectorShortWrapperPromoted();