未验证 提交 f0c3b864 编写于 作者: M Michal Strehovský 提交者: GitHub

Increase iteration count in the FinalizeTest (#62924)

Iteration count was dropped to a smaller number in https://github.com/dotnet/corert/pull/2867. Looks like it's not enough because we see this test fail in the CI.
上级 c1230695
......@@ -45,7 +45,7 @@ public class Dummy
public static int Run()
{
int iterationCount = 0;
while (!visited && iterationCount++ < 10000)
while (!visited && iterationCount++ < 1000000)
{
GC.KeepAlive(new Dummy());
GC.Collect();
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册