Switch to compiler-tester
[mono.git] / mcs / class / corlib / Test / System.Diagnostics / StackTraceTest.cs
index 96f1766fe8d09c677eb862d33cf29c38f8c8d1a3..14af812b27783f2c0b7486d48aab0fbb125054d5 100644 (file)
@@ -133,8 +133,12 @@ namespace MonoTests.System.Diagnostics {
                }
 
                [Test]
-               [Ignore ("Exception documented but not thrown on MS runtime")]
+#if !NET_2_0
+               // on MS .NET 1.x, ThreadState after Start() is Unstarted
+               [Category ("NotDotNet")]
+#endif
                [ExpectedException (typeof (ThreadStateException))]
+               [Ignore ("Not supported in Mono")]
                public void StackTrace_Thread_NotSuspended ()
                {
                        Thread t = new Thread (new ThreadStart (EmptyThread));