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
path: root/mcs/class
diff options
context:
space:
mode:
authorCalvin Buckley <calvin@cmpct.info>2019-12-02 12:34:07 +0300
committerAlexander Köplinger <alex.koeplinger@outlook.com>2019-12-02 12:34:07 +0300
commit369806e3e6941f472c4d9d239ae76936ebe5aa39 (patch)
tree5dbb6f77a4d17ea72afcfa0098aa265904f1dda5 /mcs/class
parentf13e6ba91ab184d90aa4ad05c72a30367656247e (diff)
Disable ConnectFailAsync test on AIX (#17975)
Hangs runtime; prevents CI from completing run. (Another test can also hang the runtime, but is hard to reproduce and inconsistent about that.) This should be fixed eventually, but...
Diffstat (limited to 'mcs/class')
-rwxr-xr-xmcs/class/System/Test/System.Net.Sockets/SocketTest.cs6
1 files changed, 5 insertions, 1 deletions
diff --git a/mcs/class/System/Test/System.Net.Sockets/SocketTest.cs b/mcs/class/System/Test/System.Net.Sockets/SocketTest.cs
index cc8d3b2e69c..a54d54a9077 100755
--- a/mcs/class/System/Test/System.Net.Sockets/SocketTest.cs
+++ b/mcs/class/System/Test/System.Net.Sockets/SocketTest.cs
@@ -20,7 +20,7 @@ using System.Net;
using System.Net.Sockets;
using NUnit.Framework;
using System.IO;
-
+using System.Runtime.InteropServices;
using System.Collections.Generic;
using MonoTests.Helpers;
@@ -215,6 +215,10 @@ namespace MonoTests.System.Net.Sockets
#endif
public void ConnectFailAsync ()
{
+ // XXX: Hangs on AIX
+ if (RuntimeInformation.IsOSPlatform(OSPlatform.Create("AIX")))
+ Assert.Ignore ("Skipping on AIX/i");
+
Socket sock = new Socket (AddressFamily.InterNetwork,
SocketType.Stream,
ProtocolType.Tcp);