Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/Mono.C5/Test/Sorting.cs')
-rw-r--r--mcs/class/Mono.C5/Test/Sorting.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/mcs/class/Mono.C5/Test/Sorting.cs b/mcs/class/Mono.C5/Test/Sorting.cs
index c88a7aa10f2..f5506f00787 100644
--- a/mcs/class/Mono.C5/Test/Sorting.cs
+++ b/mcs/class/Mono.C5/Test/Sorting.cs
@@ -44,7 +44,7 @@ namespace nunit.SortingTests
{
ic = new IC();
ran = new Random(3456);
- length = 10000;
+ length = 2000;
a = new int[length];
for (int i = 0; i < length; i++)
a[i] = ran.Next();
@@ -106,7 +106,7 @@ namespace nunit.SortingTests
{
ic = new IC();
ran = new Random(3456);
- length = 10000;
+ length = 2000;
a = new int[length];
for (int i = 0; i < length; i++)
a[i] = ran.Next(3, 23);
@@ -165,7 +165,7 @@ namespace nunit.SortingTests
public void Init()
{
ic = new IC();
- length = 10000;
+ length = 2000;
a = new int[length];
for (int i = 0; i < length; i++)
a[i] = i;
@@ -224,7 +224,7 @@ namespace nunit.SortingTests
public void Init()
{
ic = new IC();
- length = 10000;
+ length = 2000;
a = new int[length];
for (int i = 0; i < length; i++)
a[i] = -i;