Imported Upstream version 6.12.0.179

Former-commit-id: 0e3e22291208d34e6731637d718f4d12cca50e9e
This commit is contained in:
Xamarin Public Jenkins (auto-signing)
2022-05-16 16:00:00 +00:00
parent eac1afd703
commit 1138ddc68f
194 changed files with 7921 additions and 6506 deletions

View File

@@ -111,6 +111,7 @@ namespace MonoTests.System.Net.WebSockets
[Test]
[Category ("MobileNotWorking")] // The test hangs when ran as part of the entire BCL test suite. Works when only this fixture is ran
[Category ("NotWorking")] // started failing on CI for no reason, probably an issue with the Echo Server
public void EchoTest ()
{
const string Payload = "This is a websocket test";
@@ -136,6 +137,7 @@ namespace MonoTests.System.Net.WebSockets
[Test]
[Category ("MobileNotWorking")] // Fails when ran as part of the entire BCL test suite. Works when only this fixture is ran
[Category ("NotWorking")] // started failing on CI for no reason, probably an issue with the Echo Server
public void CloseOutputAsyncTest ()
{
Assert.IsTrue (socket.ConnectAsync (new Uri (EchoServerUrl), CancellationToken.None).Wait (5000));
@@ -153,6 +155,7 @@ namespace MonoTests.System.Net.WebSockets
[Test]
[Category ("MobileNotWorking")] // Fails when ran as part of the entire BCL test suite. Works when only this fixture is ran
[Category ("NotWorking")] // started failing on CI for no reason, probably an issue with the Echo Server
public void CloseAsyncTest ()
{
if (!socket.ConnectAsync (new Uri (EchoServerUrl), CancellationToken.None).Wait (5000)) {