Skip to content

Commit 4fa45a9

Browse files
authored
Try to re-enable DeepEquals_TooDeepJsonDocument_ThrowsInsufficientExecutionStackException test on mono (#105509)
1 parent e7f3ff1 commit 4fa45a9

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/libraries/System.Text.Json/tests/System.Text.Json.Tests/Serialization/JsonElementTests.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,6 @@ public static void DeepEquals_DeepJsonDocument(int depth)
230230
}
231231

232232
[ConditionalFact(typeof(PlatformDetection), nameof(PlatformDetection.IsThreadingSupported))]
233-
[ActiveIssue("https://github.com/dotnet/runtime/issues/105490", TestRuntimes.Mono)]
234233
public static async Task DeepEquals_TooDeepJsonDocument_ThrowsInsufficientExecutionStackException()
235234
{
236235
var tcs = new TaskCompletionSource<bool>();
@@ -247,7 +246,7 @@ public static async Task DeepEquals_TooDeepJsonDocument_ThrowsInsufficientExecut
247246
{
248247
tcs.SetException(e);
249248
}
250-
}, maxStackSize: 100_000) { IsBackground = true }.Start();
249+
}, maxStackSize: 128 * 1024) { IsBackground = true }.Start();
251250

252251
await tcs.Task;
253252
}

0 commit comments

Comments
 (0)