We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d38e559 commit 3f61f61Copy full SHA for 3f61f61
src/tests/GC/Regressions/v2.0-beta2/452950/452950.cs
@@ -39,8 +39,8 @@ public static int Main(string[] args)
39
int gcCount = GC.CollectionCount(GC.MaxGeneration);
40
Console.WriteLine(gcCount);
41
42
- // if we do a full collection <= (5% of the interations) times, we pass
43
- if (gcCount <= (numIterations*0.05))
+ // if we do a full collection <= (10% of the interations) times, we pass
+ if (gcCount <= (numIterations*0.1))
44
{
45
Console.WriteLine("Passed");
46
return 100;
0 commit comments