summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy Ayers <andya@microsoft.com>2015-11-05 12:03:00 -0800
committerAndy Ayers <andya@microsoft.com>2015-11-05 12:03:00 -0800
commit5fa06e3151e688c04a844f7549bf4cd8bd55ece6 (patch)
tree2a23258f2ded50f912180cd3fb8b5aea6081cf16
parent2f725f1c7c635bf093c1d9244c7f9c8775795c4b (diff)
downloadcoreclr-5fa06e3151e688c04a844f7549bf4cd8bd55ece6.tar.gz
coreclr-5fa06e3151e688c04a844f7549bf4cd8bd55ece6.tar.bz2
coreclr-5fa06e3151e688c04a844f7549bf4cd8bd55ece6.zip
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.
-rw-r--r--tests/src/JIT/CodeGenBringUpTests/LocallocLarge.cs2
1 files changed, 1 insertions, 1 deletions
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;