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:17:25 +0300
committerMartin Baulig <martin@novell.com>2005-01-19 18:17:25 +0300
commit5c7654cb0a790792776a910f6f250374be16ccab (patch)
tree8b697198c654e21ac1598fa6d880cd29b09a02b5 /mcs/class/Mono.C5
parentbcedf68b0a686c69357ce7cd924b32a915c53516 (diff)
2005-01-19 Martin Baulig <martin@ximian.com>
* trees/RedBlackTreeSetTests.cs: Put the threading tests into a "Threading" category, so we can exclude them when running in the debugger. * arrays/SortedArrayTests.cs: Likewise. svn path=/trunk/mcs/; revision=39171
Diffstat (limited to 'mcs/class/Mono.C5')
-rw-r--r--mcs/class/Mono.C5/Test/ChangeLog7
-rw-r--r--mcs/class/Mono.C5/Test/arrays/SortedArrayTests.cs2
-rw-r--r--mcs/class/Mono.C5/Test/trees/RedBlackTreeSetTests.cs4
3 files changed, 11 insertions, 2 deletions
diff --git a/mcs/class/Mono.C5/Test/ChangeLog b/mcs/class/Mono.C5/Test/ChangeLog
index 1b350736cb5..a7540e66539 100644
--- a/mcs/class/Mono.C5/Test/ChangeLog
+++ b/mcs/class/Mono.C5/Test/ChangeLog
@@ -1,3 +1,10 @@
+2005-01-19 Martin Baulig <martin@ximian.com>
+
+ * trees/RedBlackTreeSetTests.cs: Put the threading tests into a
+ "Threading" category, so we can exclude them when running in the
+ debugger.
+ * arrays/SortedArrayTests.cs: Likewise.
+
2004-12-04 Martin Baulig <martin@ximian.com>
* hashing/HashTableTests.cs: Disabled some tests which make
diff --git a/mcs/class/Mono.C5/Test/arrays/SortedArrayTests.cs b/mcs/class/Mono.C5/Test/arrays/SortedArrayTests.cs
index 0670d88f3c4..0a3df9791b5 100644
--- a/mcs/class/Mono.C5/Test/arrays/SortedArrayTests.cs
+++ b/mcs/class/Mono.C5/Test/arrays/SortedArrayTests.cs
@@ -1789,6 +1789,7 @@ namespace nunit.arrays.sorted
namespace Sync
{
[TestFixture]
+ [Category ("Threading")]
public class SyncRoot
{
private SortedArray<int> tree;
@@ -1903,6 +1904,7 @@ namespace nunit.arrays.sorted
}
//[TestFixture]
+ [Category ("Threading")]
public class ConcurrentQueries
{
private SortedArray<int> tree;
diff --git a/mcs/class/Mono.C5/Test/trees/RedBlackTreeSetTests.cs b/mcs/class/Mono.C5/Test/trees/RedBlackTreeSetTests.cs
index a8ba41265ca..b63d3a57e19 100644
--- a/mcs/class/Mono.C5/Test/trees/RedBlackTreeSetTests.cs
+++ b/mcs/class/Mono.C5/Test/trees/RedBlackTreeSetTests.cs
@@ -2292,9 +2292,9 @@ namespace nunit.trees.TreeSet
}
-
namespace Sync
{
+ [Category ("Threading")]
[TestFixture]
public class SyncRoot
{
@@ -2410,6 +2410,7 @@ namespace nunit.trees.TreeSet
}
//[TestFixture]
+ [Category ("Threading")]
public class ConcurrentQueries
{
private TreeSet<int> tree;
@@ -2484,7 +2485,6 @@ namespace nunit.trees.TreeSet
}
}
-
namespace Hashing
{
[TestFixture]