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/corlib/Test/System.Threading/AutoResetEventTest.cs')
-rw-r--r--mcs/class/corlib/Test/System.Threading/AutoResetEventTest.cs4
1 files changed, 0 insertions, 4 deletions
diff --git a/mcs/class/corlib/Test/System.Threading/AutoResetEventTest.cs b/mcs/class/corlib/Test/System.Threading/AutoResetEventTest.cs
index df0a77631c4..8a3ad3b76ab 100644
--- a/mcs/class/corlib/Test/System.Threading/AutoResetEventTest.cs
+++ b/mcs/class/corlib/Test/System.Threading/AutoResetEventTest.cs
@@ -12,9 +12,7 @@
using NUnit.Framework;
using System;
using System.Threading;
-#if NET_2_0
using Microsoft.Win32.SafeHandles;
-#endif
namespace MonoTests.System.Threading
{
@@ -32,7 +30,6 @@ namespace MonoTests.System.Threading
Assert.IsFalse (evt.WaitOne (1000, false), "#3");
}
-#if NET_2_0
[Test] // bug #81529
public void SafeWaitHandle ()
{
@@ -115,6 +112,5 @@ namespace MonoTests.System.Threading
are1.Close ();
swh1.Dispose ();
}
-#endif
}
}