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 Jul 25, 2024
1 parent e7f3ff1 commit 4fa45a9
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 4fa45a9

Please sign in to comment.