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:
authorLevi Broderick <GrabYourPitchforks@users.noreply.github.com>2018-03-16 06:34:52 +0300
committerAhson Khan <ahkha@microsoft.com>2018-03-16 06:34:52 +0300
commit23165cee77ae4dd7a7645b7927872948bb27a73e (patch)
treeb34853f2759d39897e28c8b7be99cd99afab449d /src/System.Memory/tests
parente45295b4d6bf4ce56a80409a8e172771a9ad0950 (diff)
Skip large arrays test on full framework (#28126)
Diffstat (limited to 'src/System.Memory/tests')
-rw-r--r--src/System.Memory/tests/Memory/OwnedMemory.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/System.Memory/tests/Memory/OwnedMemory.cs b/src/System.Memory/tests/Memory/OwnedMemory.cs
index b008be8d60..f2b28ca77b 100644
--- a/src/System.Memory/tests/Memory/OwnedMemory.cs
+++ b/src/System.Memory/tests/Memory/OwnedMemory.cs
@@ -119,6 +119,7 @@ namespace System.MemoryTests
[Fact]
[OuterLoop]
+ [SkipOnTargetFramework(TargetFrameworkMonikers.NetFramework, "Desktop framework doesn't support large arrays by default.")]
public static void OwnedMemoryPinLargeArray()
{
int[] array = new int[0x2000_0000]; // will produce array with total byte length > 2 GB