From c7d8cdbd40d92eb153e6f69778774126bb648fe9 Mon Sep 17 00:00:00 2001 From: Stephen Toub Date: Sat, 16 Mar 2019 22:01:52 -0400 Subject: [PATCH] Make ReallyLargeLookupUTF8 test outer loop It allocates a huge amount of memory currently. Commit migrated from https://github.com/dotnet/corefx/commit/0d2cbec33968872aa736d033696f618fb0c3b3de --- src/libraries/System.Text.Json/tests/Utf8JsonReaderTests.TextEquals.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/libraries/System.Text.Json/tests/Utf8JsonReaderTests.TextEquals.cs b/src/libraries/System.Text.Json/tests/Utf8JsonReaderTests.TextEquals.cs index 2c7a04d..993037d 100644 --- a/src/libraries/System.Text.Json/tests/Utf8JsonReaderTests.TextEquals.cs +++ b/src/libraries/System.Text.Json/tests/Utf8JsonReaderTests.TextEquals.cs @@ -563,6 +563,7 @@ namespace System.Text.Json.Tests [ActiveIssue(36095)] [Fact] + [OuterLoop] public static void ReallyLargeLookupUTF8() { string jsonString = "\"hello\""; -- 2.7.4