Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSantiago Fernandez Madero <safern@microsoft.com>2017-07-25 21:36:32 +0300
committerStephen Toub <stoub@microsoft.com>2017-07-25 21:36:32 +0300
commit78a8d03f70cf82730bc101c7dc46732b66e36af7 (patch)
tree11f2517959ef01bfa61611a300c00b559bcca348 /src/System.Buffers
parentdd0cb75056284161ae670ee46d8ce494d1a3238f (diff)
Re enable ArrayPool tests for UapAot (#22594)
Diffstat (limited to 'src/System.Buffers')
-rw-r--r--src/System.Buffers/tests/ArrayPool/UnitTests.cs5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/System.Buffers/tests/ArrayPool/UnitTests.cs b/src/System.Buffers/tests/ArrayPool/UnitTests.cs
index 2f3644fa4c..72a9e9f203 100644
--- a/src/System.Buffers/tests/ArrayPool/UnitTests.cs
+++ b/src/System.Buffers/tests/ArrayPool/UnitTests.cs
@@ -414,7 +414,6 @@ namespace System.Buffers.ArrayPool.Tests
}
[Fact]
- [ActiveIssue("https://github.com/dotnet/corefx/issues/20511", TargetFrameworkMonikers.UapAot)]
public static void RentBufferFiresRentedDiagnosticEvent()
{
ArrayPool<byte> pool = ArrayPool<byte>.Create(maxArrayLength: 16, maxArraysPerBucket: 1);
@@ -432,7 +431,6 @@ namespace System.Buffers.ArrayPool.Tests
}
[Fact]
- [ActiveIssue("https://github.com/dotnet/corefx/issues/20511", TargetFrameworkMonikers.UapAot)]
public static void ReturnBufferFiresDiagnosticEvent()
{
ArrayPool<byte> pool = ArrayPool<byte>.Create(maxArrayLength: 16, maxArraysPerBucket: 1);
@@ -447,7 +445,6 @@ namespace System.Buffers.ArrayPool.Tests
}
[Fact]
- [ActiveIssue("https://github.com/dotnet/corefx/issues/20511", TargetFrameworkMonikers.UapAot)]
public static void RentingNonExistentBufferFiresAllocatedDiagnosticEvent()
{
ArrayPool<byte> pool = ArrayPool<byte>.Create(maxArrayLength: 16, maxArraysPerBucket: 1);
@@ -455,7 +452,6 @@ namespace System.Buffers.ArrayPool.Tests
}
[Fact]
- [ActiveIssue("https://github.com/dotnet/corefx/issues/20511", TargetFrameworkMonikers.UapAot)]
public static void RentingBufferOverConfiguredMaximumSizeFiresDiagnosticEvent()
{
ArrayPool<byte> pool = ArrayPool<byte>.Create(maxArrayLength: 16, maxArraysPerBucket: 1);
@@ -463,7 +459,6 @@ namespace System.Buffers.ArrayPool.Tests
}
[Fact]
- [ActiveIssue("https://github.com/dotnet/corefx/issues/20511", TargetFrameworkMonikers.UapAot)]
public static void RentingManyBuffersFiresExpectedDiagnosticEvents()
{
ArrayPool<byte> pool = ArrayPool<byte>.Create(maxArrayLength: 16, maxArraysPerBucket: 10);