Skip to content

Commit f0c3b86

Browse files
Increase iteration count in the FinalizeTest (#62924)
Iteration count was dropped to a smaller number in dotnet/corert#2867. Looks like it's not enough because we see this test fail in the CI.
1 parent c123069 commit f0c3b86

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/tests/nativeaot/SmokeTests/BasicThreading/BasicThreading.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public class Dummy
4545
public static int Run()
4646
{
4747
int iterationCount = 0;
48-
while (!visited && iterationCount++ < 10000)
48+
while (!visited && iterationCount++ < 1000000)
4949
{
5050
GC.KeepAlive(new Dummy());
5151
GC.Collect();

0 commit comments

Comments
 (0)