From 820f4ddc9bddd02436821f4e2be2b489621c2fa5 Mon Sep 17 00:00:00 2001 From: Ben Maurer Date: Thu, 17 Feb 2005 02:06:01 +0000 Subject: [PATCH] threading tests fuck 2.0, news at 11 svn path=/trunk/mcs/; revision=40784 --- mcs/class/corlib/Test/System.Threading/ReaderWriterLockTest.cs | 3 ++- mcs/class/corlib/Test/System.Threading/ThreadTest.cs | 6 ++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/mcs/class/corlib/Test/System.Threading/ReaderWriterLockTest.cs b/mcs/class/corlib/Test/System.Threading/ReaderWriterLockTest.cs index 4409ade353f..3be6c472b01 100644 --- a/mcs/class/corlib/Test/System.Threading/ReaderWriterLockTest.cs +++ b/mcs/class/corlib/Test/System.Threading/ReaderWriterLockTest.cs @@ -13,7 +13,8 @@ using System.Threading; namespace MonoTests.System.Threading { - [TestFixture] + [TestFixture] + [Category ("NotWorking")] public class ReaderWriterLockTest : Assertion { ReaderWriterLock rwlock; diff --git a/mcs/class/corlib/Test/System.Threading/ThreadTest.cs b/mcs/class/corlib/Test/System.Threading/ThreadTest.cs index 930a6423b86..017fc02a48a 100644 --- a/mcs/class/corlib/Test/System.Threading/ThreadTest.cs +++ b/mcs/class/corlib/Test/System.Threading/ThreadTest.cs @@ -14,8 +14,12 @@ using System; using System.Security.Principal; using System.Threading; +// These tests seem to hang the 2.0 framework. So they are disabled for now +// + namespace MonoTests.System.Threading { + [Category ("NotWorking")] public class ThreadedPrincipalTest : Assertion { public static void NoPrincipal () @@ -71,6 +75,7 @@ namespace MonoTests.System.Threading { } [TestFixture] + [Category ("NotWorking")] public class ThreadTest : Assertion { //Some Classes to test as threads @@ -410,6 +415,7 @@ namespace MonoTests.System.Threading { } } + public void TestJoin1() { C1Test test1 = new C1Test(); -- 2.11.4.GIT