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:
authorMartin Baulig <martin@novell.com>2005-01-19 18:37:14 +0300
committerMartin Baulig <martin@novell.com>2005-01-19 18:37:14 +0300
commitea189663dced651425e63ff2824db6ac3b826a18 (patch)
tree3ca0a97646c9933dacb32ddf77f5a5e650bac18b /mcs/class/Mono.C5
parentb975f6d91c262029050bae2e39a32d573ead0186 (diff)
2005-01-19 Martin Baulig <martin@ximian.com>
* test/RedBlackTreeSetTests.cs: Decrease number of iterations. * arrays/SortedArrayTests.cs: Likewise. svn path=/trunk/mcs/; revision=39180
Diffstat (limited to 'mcs/class/Mono.C5')
-rw-r--r--mcs/class/Mono.C5/Test/ChangeLog5
-rw-r--r--mcs/class/Mono.C5/Test/arrays/SortedArrayTests.cs4
-rw-r--r--mcs/class/Mono.C5/Test/trees/RedBlackTreeSetTests.cs4
3 files changed, 9 insertions, 4 deletions
diff --git a/mcs/class/Mono.C5/Test/ChangeLog b/mcs/class/Mono.C5/Test/ChangeLog
index 4b96343acbe..897084c70f3 100644
--- a/mcs/class/Mono.C5/Test/ChangeLog
+++ b/mcs/class/Mono.C5/Test/ChangeLog
@@ -1,5 +1,10 @@
2005-01-19 Martin Baulig <martin@ximian.com>
+ * test/RedBlackTreeSetTests.cs: Decrease number of iterations.
+ * arrays/SortedArrayTests.cs: Likewise.
+
+2005-01-19 Martin Baulig <martin@ximian.com>
+
* Sorting.cs: 2000 elements is enough for us.
2005-01-19 Martin Baulig <martin@ximian.com>
diff --git a/mcs/class/Mono.C5/Test/arrays/SortedArrayTests.cs b/mcs/class/Mono.C5/Test/arrays/SortedArrayTests.cs
index 0a3df9791b5..e20a592af69 100644
--- a/mcs/class/Mono.C5/Test/arrays/SortedArrayTests.cs
+++ b/mcs/class/Mono.C5/Test/arrays/SortedArrayTests.cs
@@ -1794,7 +1794,7 @@ namespace nunit.arrays.sorted
{
private SortedArray<int> tree;
- int sz = 5000;
+ int sz = 50;
[Test]
@@ -1909,7 +1909,7 @@ namespace nunit.arrays.sorted
{
private SortedArray<int> tree;
- int sz = 500000;
+ int sz = 500;
[SetUp]
diff --git a/mcs/class/Mono.C5/Test/trees/RedBlackTreeSetTests.cs b/mcs/class/Mono.C5/Test/trees/RedBlackTreeSetTests.cs
index b63d3a57e19..117ba6dd2b3 100644
--- a/mcs/class/Mono.C5/Test/trees/RedBlackTreeSetTests.cs
+++ b/mcs/class/Mono.C5/Test/trees/RedBlackTreeSetTests.cs
@@ -2300,7 +2300,7 @@ namespace nunit.trees.TreeSet
{
private TreeSet<int> tree;
- int sz = 5000;
+ int sz = 50;
[Test]
@@ -2415,7 +2415,7 @@ namespace nunit.trees.TreeSet
{
private TreeSet<int> tree;
- int sz = 500000;
+ int sz = 500;
[SetUp]