Skip to content

Commit

Permalink
Try to re-enable DeepEquals_TooDeepJsonDocument_ThrowsInsufficientExe…
Browse files Browse the repository at this point in the history
…cutionStackException test on mono (#105509)
  • Loading branch information
stephentoub authored and directhex committed Jul 26, 2024
1 parent b4730cd commit 28ad257
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,6 @@ public static void DeepEquals_DeepJsonDocument(int depth)
}

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

await tcs.Task;
}
Expand Down

0 comments on commit 28ad257

Please sign in to comment.