From 0b164711c4df050566e23a1d0e89a22c08a832bd Mon Sep 17 00:00:00 2001 From: Bruce Forstall Date: Sun, 26 Jul 2020 11:39:41 -0700 Subject: [PATCH] Disable Microsoft.Extensions.Caching.Memory.CapacityTests.DoNotAddIfSizeOverflows (#39930) Issue: https://github.com/dotnet/runtime/issues/33993, https://github.com/dotnet/runtime/issues/39241 --- src/libraries/Microsoft.Extensions.Caching.Memory/tests/CapacityTests.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/libraries/Microsoft.Extensions.Caching.Memory/tests/CapacityTests.cs b/src/libraries/Microsoft.Extensions.Caching.Memory/tests/CapacityTests.cs index 4ea5c20..e4d5ef4 100644 --- a/src/libraries/Microsoft.Extensions.Caching.Memory/tests/CapacityTests.cs +++ b/src/libraries/Microsoft.Extensions.Caching.Memory/tests/CapacityTests.cs @@ -110,6 +110,7 @@ namespace Microsoft.Extensions.Caching.Memory } [Fact] + [ActiveIssue("https://github.com/dotnet/runtime/issues/33993")] public async Task DoNotAddIfSizeOverflows() { var cache = new MemoryCache(new MemoryCacheOptions { SizeLimit = long.MaxValue }); -- 2.7.4