From 3a8534792331ea13d248b9f55a0fa5589896b5ef Mon Sep 17 00:00:00 2001 From: Jan Kotas Date: Thu, 17 Nov 2022 20:59:13 -0800 Subject: [PATCH] Delete temporary instrumentation for #76280 Fixes #76280 --- .../General/Vector256/ConvertToDouble.Int64.cs | 2 -- .../General/Vector256/ConvertToDouble.UInt64.cs | 2 -- 2 files changed, 4 deletions(-) diff --git a/src/tests/JIT/HardwareIntrinsics/General/Vector256/ConvertToDouble.Int64.cs b/src/tests/JIT/HardwareIntrinsics/General/Vector256/ConvertToDouble.Int64.cs index 8b8235774162a..fa1aca4d1a4e9 100644 --- a/src/tests/JIT/HardwareIntrinsics/General/Vector256/ConvertToDouble.Int64.cs +++ b/src/tests/JIT/HardwareIntrinsics/General/Vector256/ConvertToDouble.Int64.cs @@ -287,7 +287,6 @@ private void ValidateResult(Int64[] firstOp, Double[] result, [CallerMemberName] if (result[0] != (double)(firstOp[0])) { - Environment.FailFast("Temporary instrumentation to diagnose https://github.com/dotnet/runtime/issues/76280"); succeeded = false; } else @@ -296,7 +295,6 @@ private void ValidateResult(Int64[] firstOp, Double[] result, [CallerMemberName] { if (result[i] != (double)(firstOp[i])) { - Environment.FailFast("Temporary instrumentation to diagnose https://github.com/dotnet/runtime/issues/76280"); succeeded = false; break; } diff --git a/src/tests/JIT/HardwareIntrinsics/General/Vector256/ConvertToDouble.UInt64.cs b/src/tests/JIT/HardwareIntrinsics/General/Vector256/ConvertToDouble.UInt64.cs index dde1d66100bc4..1643320662228 100644 --- a/src/tests/JIT/HardwareIntrinsics/General/Vector256/ConvertToDouble.UInt64.cs +++ b/src/tests/JIT/HardwareIntrinsics/General/Vector256/ConvertToDouble.UInt64.cs @@ -287,7 +287,6 @@ private void ValidateResult(UInt64[] firstOp, Double[] result, [CallerMemberName if (result[0] != (double)(firstOp[0])) { - Environment.FailFast("Temporary instrumentation to diagnose https://github.com/dotnet/runtime/issues/76280"); succeeded = false; } else @@ -296,7 +295,6 @@ private void ValidateResult(UInt64[] firstOp, Double[] result, [CallerMemberName { if (result[i] != (double)(firstOp[i])) { - Environment.FailFast("Temporary instrumentation to diagnose https://github.com/dotnet/runtime/issues/76280"); succeeded = false; break; }