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:
authorRolf Bjarne Kvinge <rolf@xamarin.com>2017-11-07 04:48:17 +0300
committerAlexander Köplinger <alex.koeplinger@outlook.com>2017-11-07 04:48:17 +0300
commitc3be0663c1f24f711b2c3f0f5a0979a2e591db20 (patch)
treed8ab4379d50291611b01a5c6235bec565ffea4f2 /mcs/class/System
parentec78917e102e421e911d311b17f2412c11ab2859 (diff)
[System] Ignore tests that fail on device until the corresponding bugs have been fixed. (#5951)
* [System] Ignore broken test until corresponding bug is fixed. * [System] Ignore test that randomly hangs on device.
Diffstat (limited to 'mcs/class/System')
-rw-r--r--mcs/class/System/Test/System.Net/HttpListenerRequestTest.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/mcs/class/System/Test/System.Net/HttpListenerRequestTest.cs b/mcs/class/System/Test/System.Net/HttpListenerRequestTest.cs
index cf366aca2fd..576ba329d41 100644
--- a/mcs/class/System/Test/System.Net/HttpListenerRequestTest.cs
+++ b/mcs/class/System/Test/System.Net/HttpListenerRequestTest.cs
@@ -171,6 +171,9 @@ namespace MonoTests.System.Net
#if FEATURE_NO_BSD_SOCKETS
[ExpectedException (typeof (PlatformNotSupportedException))]
#endif
+#if MONOTOUCH
+ [Ignore ("Randomly produces ObjectDisposedExceptions, in particular on device. See bug #39780.")]
+#endif
public void HttpBasicAuthScheme ()
{
var port = NetworkHelpers.FindFreePort ();
@@ -291,6 +294,9 @@ namespace MonoTests.System.Net
#if FEATURE_NO_BSD_SOCKETS
[ExpectedException (typeof (PlatformNotSupportedException))]
#endif
+#if MONOTOUCH
+ [Ignore ("On device sometimes hangs in the call to listener.GetContext (). See bug #60542.")]
+#endif
public void HttpRequestIgnoreBadCookies ()
{
var port = NetworkHelpers.FindFreePort ();