Skip to content

Commit

Permalink
[ActiveIssue] test flakiness on M.E.Caching.Memory (#34142)
Browse files Browse the repository at this point in the history
* ActiveIssue flakiness on M.E.Caching.Memory

* disable test OvercapacityPurge_AreThreadSafe
  • Loading branch information
maryamariyan committed Mar 27, 2020
1 parent b24e9cd commit 0c9094e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -306,6 +306,7 @@ public void RemovingEntryDecreasesCacheSize()
}

[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/33993")]
public async Task ExpiringEntryDecreasesCacheSize()
{
var cache = new MemoryCache(new MemoryCacheOptions
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,7 @@ public void SetGetAndRemoveWorksWithObjectKeysWhenDifferentReferences()
}

[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/33993", TestRuntimes.Mono)]
[ActiveIssue("https://github.com/dotnet/runtime/issues/33993")]
public void GetAndSet_AreThreadSafe_AndUpdatesNeverLeavesNullValues()
{
var cache = CreateCache();
Expand Down Expand Up @@ -497,6 +497,7 @@ public void GetAndSet_AreThreadSafe_AndUpdatesNeverLeavesNullValues()
}

[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/33993")]
public void OvercapacityPurge_AreThreadSafe()
{
var cache = new MemoryCache(new MemoryCacheOptions
Expand Down

0 comments on commit 0c9094e

Please sign in to comment.