From 9c5581c09e2c90450d644c9215493f2131515da1 Mon Sep 17 00:00:00 2001 From: Bruce Forstall Date: Sat, 19 Jun 2021 10:07:59 -0700 Subject: [PATCH] Disable tests for #54007 (#54207) --- src/libraries/System.IO.Hashing/tests/Crc32Tests.cs | 1 + src/libraries/System.IO.Hashing/tests/Crc64Tests.cs | 1 + src/libraries/System.IO.Hashing/tests/XxHash32Tests.007.cs | 1 + src/libraries/System.IO.Hashing/tests/XxHash32Tests.cs | 1 + src/libraries/System.IO.Hashing/tests/XxHash32Tests.f00d.cs | 1 + src/libraries/System.IO.Hashing/tests/XxHash64Tests.007.cs | 1 + src/libraries/System.IO.Hashing/tests/XxHash64Tests.cs | 1 + src/libraries/System.IO.Hashing/tests/XxHash64Tests.f00d.cs | 1 + 8 files changed, 8 insertions(+) diff --git a/src/libraries/System.IO.Hashing/tests/Crc32Tests.cs b/src/libraries/System.IO.Hashing/tests/Crc32Tests.cs index 6d2993f1509e4..4e5ac8753d3f7 100644 --- a/src/libraries/System.IO.Hashing/tests/Crc32Tests.cs +++ b/src/libraries/System.IO.Hashing/tests/Crc32Tests.cs @@ -93,6 +93,7 @@ public void InstanceAppendAllocateAndReset(TestCase testCase) InstanceAppendAllocateAndResetDriver(testCase); } + [SkipOnCoreClr("https://github.com/dotnet/runtime/issues/54007", RuntimeConfiguration.Checked)] [Theory] [MemberData(nameof(TestCases))] public void InstanceMultiAppendGetCurrentHash(TestCase testCase) diff --git a/src/libraries/System.IO.Hashing/tests/Crc64Tests.cs b/src/libraries/System.IO.Hashing/tests/Crc64Tests.cs index d647e4b958798..546501aa4d545 100644 --- a/src/libraries/System.IO.Hashing/tests/Crc64Tests.cs +++ b/src/libraries/System.IO.Hashing/tests/Crc64Tests.cs @@ -97,6 +97,7 @@ public void InstanceAppendAllocateAndReset(TestCase testCase) InstanceAppendAllocateAndResetDriver(testCase); } + [SkipOnCoreClr("https://github.com/dotnet/runtime/issues/54007", RuntimeConfiguration.Checked)] [Theory] [MemberData(nameof(TestCases))] public void InstanceMultiAppendGetCurrentHash(TestCase testCase) diff --git a/src/libraries/System.IO.Hashing/tests/XxHash32Tests.007.cs b/src/libraries/System.IO.Hashing/tests/XxHash32Tests.007.cs index eed5aec365b3e..cf2e967d32a68 100644 --- a/src/libraries/System.IO.Hashing/tests/XxHash32Tests.007.cs +++ b/src/libraries/System.IO.Hashing/tests/XxHash32Tests.007.cs @@ -105,6 +105,7 @@ public void InstanceAppendAllocateAndReset(TestCase testCase) InstanceAppendAllocateAndResetDriver(testCase); } + [SkipOnCoreClr("https://github.com/dotnet/runtime/issues/54007", RuntimeConfiguration.Checked)] [Theory] [MemberData(nameof(TestCases))] public void InstanceMultiAppendGetCurrentHash(TestCase testCase) diff --git a/src/libraries/System.IO.Hashing/tests/XxHash32Tests.cs b/src/libraries/System.IO.Hashing/tests/XxHash32Tests.cs index f9dccad029402..15c671d12bee9 100644 --- a/src/libraries/System.IO.Hashing/tests/XxHash32Tests.cs +++ b/src/libraries/System.IO.Hashing/tests/XxHash32Tests.cs @@ -118,6 +118,7 @@ public void InstanceAppendAllocateAndReset(TestCase testCase) InstanceAppendAllocateAndResetDriver(testCase); } + [SkipOnCoreClr("https://github.com/dotnet/runtime/issues/54007", RuntimeConfiguration.Checked)] [Theory] [MemberData(nameof(TestCases))] public void InstanceMultiAppendGetCurrentHash(TestCase testCase) diff --git a/src/libraries/System.IO.Hashing/tests/XxHash32Tests.f00d.cs b/src/libraries/System.IO.Hashing/tests/XxHash32Tests.f00d.cs index 5171e62f8ca56..007acd7655f55 100644 --- a/src/libraries/System.IO.Hashing/tests/XxHash32Tests.f00d.cs +++ b/src/libraries/System.IO.Hashing/tests/XxHash32Tests.f00d.cs @@ -105,6 +105,7 @@ public void InstanceAppendAllocateAndReset(TestCase testCase) InstanceAppendAllocateAndResetDriver(testCase); } + [SkipOnCoreClr("https://github.com/dotnet/runtime/issues/54007", RuntimeConfiguration.Checked)] [Theory] [MemberData(nameof(TestCases))] public void InstanceMultiAppendGetCurrentHash(TestCase testCase) diff --git a/src/libraries/System.IO.Hashing/tests/XxHash64Tests.007.cs b/src/libraries/System.IO.Hashing/tests/XxHash64Tests.007.cs index 5c2e575377870..4da264fb5ff10 100644 --- a/src/libraries/System.IO.Hashing/tests/XxHash64Tests.007.cs +++ b/src/libraries/System.IO.Hashing/tests/XxHash64Tests.007.cs @@ -115,6 +115,7 @@ public void InstanceAppendAllocateAndReset(TestCase testCase) InstanceAppendAllocateAndResetDriver(testCase); } + [SkipOnCoreClr("https://github.com/dotnet/runtime/issues/54007", RuntimeConfiguration.Checked)] [Theory] [MemberData(nameof(TestCases))] public void InstanceMultiAppendGetCurrentHash(TestCase testCase) diff --git a/src/libraries/System.IO.Hashing/tests/XxHash64Tests.cs b/src/libraries/System.IO.Hashing/tests/XxHash64Tests.cs index 973d108fc9377..39245a975d878 100644 --- a/src/libraries/System.IO.Hashing/tests/XxHash64Tests.cs +++ b/src/libraries/System.IO.Hashing/tests/XxHash64Tests.cs @@ -131,6 +131,7 @@ public void InstanceAppendAllocateAndReset(TestCase testCase) InstanceAppendAllocateAndResetDriver(testCase); } + [SkipOnCoreClr("https://github.com/dotnet/runtime/issues/54007", RuntimeConfiguration.Checked)] [Theory] [MemberData(nameof(TestCases))] public void InstanceMultiAppendGetCurrentHash(TestCase testCase) diff --git a/src/libraries/System.IO.Hashing/tests/XxHash64Tests.f00d.cs b/src/libraries/System.IO.Hashing/tests/XxHash64Tests.f00d.cs index 23006a571627b..79d370e93d197 100644 --- a/src/libraries/System.IO.Hashing/tests/XxHash64Tests.f00d.cs +++ b/src/libraries/System.IO.Hashing/tests/XxHash64Tests.f00d.cs @@ -115,6 +115,7 @@ public void InstanceAppendAllocateAndReset(TestCase testCase) InstanceAppendAllocateAndResetDriver(testCase); } + [SkipOnCoreClr("https://github.com/dotnet/runtime/issues/54007", RuntimeConfiguration.Checked)] [Theory] [MemberData(nameof(TestCases))] public void InstanceMultiAppendGetCurrentHash(TestCase testCase)