From 5fa06e3151e688c04a844f7549bf4cd8bd55ece6 Mon Sep 17 00:00:00 2001 From: Andy Ayers Date: Thu, 5 Nov 2015 12:03:00 -0800 Subject: Reduce number of threads used by the LocallocLarge test This test used to create ~3000 threads. Reduce that to ~300 while we sort out what is behind #1966. --- tests/src/JIT/CodeGenBringUpTests/LocallocLarge.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/src/JIT/CodeGenBringUpTests/LocallocLarge.cs b/tests/src/JIT/CodeGenBringUpTests/LocallocLarge.cs index ac8b791421..aa3662c72a 100644 --- a/tests/src/JIT/CodeGenBringUpTests/LocallocLarge.cs +++ b/tests/src/JIT/CodeGenBringUpTests/LocallocLarge.cs @@ -62,7 +62,7 @@ public class BringUpTest public static int Main() { - for (int j = 2; j < 1024 * 100; j += 33) + for (int j = 2; j < 1024 * 100; j += 331) { bool b = RunTest(j); if (!b) return Fail; -- cgit v1.2.3