diff --git a/src/tests/JIT/Regression/JitBlue/Runtime_115815/Runtime_115815.cs b/src/tests/JIT/Regression/JitBlue/Runtime_115815/Runtime_115815.cs index ccd925aac17a74..77f42fe7d49453 100644 --- a/src/tests/JIT/Regression/JitBlue/Runtime_115815/Runtime_115815.cs +++ b/src/tests/JIT/Regression/JitBlue/Runtime_115815/Runtime_115815.cs @@ -11,12 +11,12 @@ public class Runtime_115815 [Fact] public static void TestEntryPoint() { - var destination = new KeyValuePair[1_000_000]; + var destination = new KeyValuePair[1_000]; // loop to make this method fully interruptible + to get into OSR version - for (int i = 0; i < destination.Length; i++) + for (int i = 0; i < destination.Length * 1000; i++) { - destination[i] = default; + destination[i / 1000] = default; } for (int i = 0; i < 5; i++)