From 8d5da1be7a2e04d51537539ce80e8244266b0b58 Mon Sep 17 00:00:00 2001 From: Stephen Toub Date: Wed, 30 Jan 2019 17:46:23 -0500 Subject: [PATCH] Disable decimal tests that'll fail until an updated coreclr arrives Commit migrated from https://github.com/dotnet/corefx/commit/709f3ab1178df667e10b3929d19c2dcf49da7c15 --- src/libraries/System.Memory/tests/ParsersAndFormatters/TestData.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libraries/System.Memory/tests/ParsersAndFormatters/TestData.cs b/src/libraries/System.Memory/tests/ParsersAndFormatters/TestData.cs index 48a2f96..6863ce5 100644 --- a/src/libraries/System.Memory/tests/ParsersAndFormatters/TestData.cs +++ b/src/libraries/System.Memory/tests/ParsersAndFormatters/TestData.cs @@ -229,7 +229,7 @@ namespace System.Buffers.Text.Tests yield return decimal.MaxValue; // negative 0m. The formatter is expected *not* to emit a minus sign in this case. - yield return (new MutableDecimal() { High = 0, Mid = 0, Low = 0, IsNegative = true }).ToDecimal(); + //yield return (new MutableDecimal() { High = 0, Mid = 0, Low = 0, IsNegative = true }).ToDecimal(); // TODO: Re-enable [ActiveIssue("https://github.com/dotnet/coreclr/pull/22300")] yield return 0.304m; // Round down yield return -0.304m; @@ -244,7 +244,7 @@ namespace System.Buffers.Text.Tests yield return 1.00m; yield return 0.00m; yield return -1.00m; - yield return -0.00m; + //yield return -0.00m; // TODO: Re-enable [ActiveIssue("https://github.com/dotnet/coreclr/pull/22300")] } } -- 2.7.4